SAP BW .....all info @ one place
SAP BW relevant Information
Loading
Showing posts with label sap bi. Show all posts
Showing posts with label sap bi. Show all posts


Function module to remove special characteristics while loading data into SAP BW from different sources.

* Create ZSTRING OF LENGH "25O" AND TYPE "CHAR".
* Create STR_IN and STR_OUT with reference to ZSTRING.

FUNCTION <   >.
*"----------------------------------------------------------------------
*"*"Local Interface:
*"  IMPORTING
*"     REFERENCE(STR_IN) TYPE  Z_STRING
*"  EXPORTING
*"     REFERENCE(STR_OUT) TYPE  Z_STRING
*"----------------------------------------------------------------------
  CONSTANTS:
    cc_okchar(59)   TYPE c VALUE ' !"%&''()*+,-./:;<=>?_0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'.

  DATA:
    lc_okchar1(72)  TYPE c,
    lc_okchar2(59)  TYPE c,
    lc_okchar(131)  TYPE c,
    l_d_offset      LIKE sy-index,
    ls_string       TYPE Z_STRING,
    li_strlen       TYPE i.

* Get the list of allowed characters.
  CALL FUNCTION 'RSKC_ALLOWED_CHAR_GET'
    IMPORTING
      e_allowed_char = lc_okchar1
      e_default_char = lc_okchar2.
  IF sy-subrc IS INITIAL.

*   No error .. set the Ok Char variable
    CONCATENATE lc_okchar1 lc_okchar2 INTO lc_okchar.
    CONDENSE    lc_okchar NO-GAPS.
  ELSE.

*   Error ... Just use the value in the constant.
    lc_okchar = cc_okchar.
  ENDIF.

  ls_string = STR_IN.
  CONDENSE  ls_string.
  TRANSLATE ls_string TO UPPER CASE.

* Remove initial characters that can cause problems: !, #, ?, etc
  IF ls_string(1) = '!'.
    ls_string(1) = ' '.
  ELSEIF ls_string(1) = '#'.
    ls_string(1) = ' '.
  ELSEIF ls_string(1) = '?'.
    ls_string(1) = ' '.
  ENDIF.

* Get the length of the string being processed.
  DESCRIBE FIELD ls_string LENGTH li_strlen IN CHARACTER MODE.

* Process string and remove unwanted characters
  DO li_strlen TIMES.
    l_d_offset = sy-index - 1.
    IF ls_string+l_d_offset(1) CO lc_okchar.

*Character allowed, do nothing
    ELSE.
      ls_string+l_d_offset(1) = ' '.
    ENDIF.
  ENDDO.

  str_out = ls_string.

ENDFUNCTION.

 

To change source system in BW without impacting objects developed in BW system.

Please check: ECC source systems on SAP BW environment without impacting the Data modeling objects built in the SAP BW system.

 

SAP BUSINESSOBJECTS BI 4.X - SYSTEM LANDSCAPES 


The SAP BusinessObjects BI Solution Architecture is based on a set of customer landscape patterns. To start leveraging the material you should use the introduction and see which of the available landscape types is matching your own overall landscape.



The SAP BusinessObjects BI Solution Architecture is based on a set of customer landscape patterns. This presentation outlines the different landscape options and should be used as a start to explore further the additional material.
This presentation provides an overview on the SAP BusinesObjects BI 4.0 Solution Architecture for the System Landscape Type 1. This is relevant for customers leveraging non-SAP based packaged applications such as PeopleSoft, Siebel, or Oracle e-BusinessSuite, or any other non-SAP based packaged applications without a datawarehouse solution
This presentation provides an overview on the SAP BusinesObjects BI 4.0 Solution Architecture for the System Landscape Type 2. This is relevant for customers leveraging SAP ERP or any other packaged application from SAP without a datawarehouse solution.
This presentation provides an overview on the SAP BusinesObjects BI 4.0 Solution Architecture for the System Landscape Type 3. This is relevant for customers leveraging SAP ERP or any other SAP packaged application in combination with non-SAP based packaged applications such as PeopleSoft, Siebel, or Oracle e-BusinessSuite, or any other non-SAP based application without a datawarehouse solution.
This presentation provides an overview on the SAP BusinesObjects BI 4.0 Solution Architecture for the System Landscape Type 4. This is relevant for customers leveraging SAP ERP or any other SAP packaged application in combination with non-SAP based packaged applications  with a data warehouse solution not based on SAP NetWeaver BW.
This presentation provides an overview on the SAP BusinesObjects BI 4.0 Solution Architecture for the System Landscape Type 5. This is relevant for customers leveraging SAP ERP or any other SAP packaged application in combination with non-SAP based packaged applications with a datawarehouse solution based on SAP NetWeaver BW.
This presentation provides an overview on the SAP BusinesObjects BI 4.0 Solution Architecture for the System Landscape Type 6. This is relevant for customers leveraging SAP ERP or any other SAP packaged application in combination with non-SAP based packaged applications with combination of datawarehouse solutions - SAP NetWeaver BW and non-SAP based datawarehouse solutions.

 
 


OVERVIEW

One of the biggest challenges is the connection between the Abap and Java stack to enable the new NetWeaver 7.0 BI features. The Presentation shows you the detailed usage and the pre requisites of the CTC for BI-Java and the effort which was taken to improve the TCO for NetWeaver BI in the area of Software Lifecycle Management. Additional Information helps you to identify unwanted system outages.
Available @ SAP NetWeaver 7.0 - Setting up BEx Web - Short Track

 


OVERVIEW

This guide provides information about the new BI Suite features that are available in SAP NetWeaver 2004s. It focuses on the features of the BI Suite that are relevant to BI Content. This document aims to support BI Content developers in knowing when and how to use the new features.

 

How to Papers, related to BW direct download

Google
 

Recent Posts

SAP Jobs