Implementation and Usage of Transformation End Routine in SAP BI 7.0

Size: px
Start display at page:

Download "Implementation and Usage of Transformation End Routine in SAP BI 7.0"

Transcription

1 Implementation and Usage of Transformation End Routine in SAP BI 7.0 Applies to: This article applies to SAP BI 7.0. For more information, visit the Business Intelligence homepage. Summary This document provides the overview of all the routines available in transformation in BI 7.0 with special focus on the possible scenarios for usage of end routine and how to implement the same. Author: Company: Anurag krishna dev Infosys technologies limited Created on: 15 April 2009 Author Bio Anurag krishna dev is an SAP certified solution consultant and working at Infosys Technologies. He has been involved in SAP BI consulting practice for 3 years now. He has expertise in executing implementation and support projects for multiple clients SAP AG 1

2 Table of Contents Routines in transformation...3 Start routine...4 Routine for key figures or characteristics...4 Expert Routine...5 End routine...5 End routine parameters...6 Import Parameters...6 Export Parameters...6 Change Parameters...6 Exception Raising Parameters...6 Business Scenario...6 Technical solution...8 Step 1 - Create the target info cube...8 Step 2 Create transformation...8 Step 3 Maintain end routine...9 Step 4 Create and execute the Data transfer process...13 Related contents...15 Disclaimer and Liability Notice SAP AG 2

3 Introduction This article explains about the different routines available in transformation in BI 7.0 and how they are structured in main transformation program. The document also elaborates the business scenarios where these routines can be leveraged to implement complex transformation rules. Special focus is given on end routine with an example business scenario. Routines in transformation Routines are local ABAP classes that consist of a predefined definition area and an implementation area. The TYPES for the inbound and outbound parameters and the signature of the routine (ABAP method) are stored in the definition area. The actual routine is created in the implementation area. ABAP object statements are available in the coding of the routine. Upon generation, the coding is embedded in the local class of the transformation program as the method. As of Net weaver release 2004s following four types of routines are available in transformation 1. Start routine 2. Routine for key figures and characteristics (Transfer rule routine) 3. End routine 4. Expert routine Following figure depicts the position of these routine in dataflow Figure- 1 These routines are the components of main transformation program; following figure shows the structure of main transformation program with different components 2008 SAP AG 3

4 Start routine Figure- 2 The start routine is run for each data package at the start of the transformation. The start routine has a table in the format of the source structure as input and output parameters. It is used to perform preliminary calculations and store these in a global data structure or in a table. This structure or table can be accessed from other routines. You can modify or delete data in the data package. Click here to maintain the Start Routine. After maintaining it, the new symbol will change to pencil symbol which signifies that Start routine is maintained Figure- 3 Routine for key figures or characteristics This routine is available as a rule type; you can define the routine as a transformation rule for a key figure or a characteristic. The input and output values depend on the selected field in the transformation rule SAP AG 4

5 Expert Routine Figure- 4 This type of routine is only intended for use in special cases. You can use the expert routine if there are not sufficient functions to perform a transformation. The expert routine should be used as an interim solution until the necessary functions are available in the standard routine. You can use this to program the transformation yourself without using the available rule types. You must implement the message transfer to the monitor yourself. Figure- 5 End routine Figure- 6 An end routine is a routine with a table in the target structure format as input and output parameters. You can use an end routine to post process data after transformation on a package-by-package basis. For example, you can delete records that are not to be updated, or perform data checks. As described in the Figure- 1, The End Routine is executed at End of the main transformation Program SAP AG 5

6 Go here to maintain the End routine. After maintaining it, the new symbol will change to pencil symbol which signifies that start routine is maintained.while in display mode the existence of the end routine will be signified Figure- 7 by the specs symbol. End routine parameters Import Parameters REQUEST: Request ID DATAPAKID: Number of current data package Export Parameters MONITOR: Table for user-defined monitoring. This table is filled using row structure MONITOR_REC (the record number of the processed record is inserted automatically from the framework). Change Parameters RESULT_PACKAGE: Contains all data that has been processed by the transformation. Exception Raising Parameters CX_RSROUT_ABORT: If a raise exception type cx rsrout_abort is triggered in the routine, the system terminates the entire loading process. The request is highlighted in the extraction monitor as Terminated. The system stops processing the current data package. This can be useful with serious errors. Business Scenario To elaborate the usage of transformation end routine we will take the example of ABC Company which is having different vendors in different sales region (East West North and South).For new production the ABC Company needs to procure the raw material from different region. The management has decided how much material will be procured form different regions over next quarter (Table 1.1). The company has selected some of the vendors to whom the purchase orders will be raised from different region; however the total PO amount and quantity will be distributed to different vendors based on their Preference Factor. The ABC Company maintains this Preference factor for vendors based on its business relationship and it has been maintained in the Master data of vendors (Table 1.2). The same is exemplified below SAP AG 6

7 The consolidated list of material to be procured from different regions:- Fiscal Period Material Region Amount Currency Quantity Unit EAST 1000 INR 10 ST WEST INR 100 ST NORTH INR 400 ST Table 1.1 Vendor Master Data:- Vendor Region Preference factor 8000 EAST EAST EAST WEST WEST WEST NORTH NORTH NORTH 0.3 Table 1.2 As we can see in the source we have the procurement information aggregated at the region level. For reporting purpose we need more granular information at the vendor level so our task is to distribute this aggregated information to different vendors based on their Preference factor and load it in the target (Table 1.3). This is depicted below:- Fiscal Period Material Region Vendor Amount Currency Quantity Unit EAST * 0.4 = 400 INR 10 * 0.4 = 4 ST EAST * 0.3 = 300 INR 10 * 0.3 = 3 ST EAST * 0.3 = 300 INR 10 * 0.3 = 3 ST WEST * 0.3 = 3000 INR 100 * 0.3 = 30 ST WEST * 0.3 = 3000 INR 100 * 0.3 = 30 ST WEST * 0.4 = 4000 INR 100 * 0.4 = 40 ST NORTH * 0.4 = INR 400 * 0.4 = 160 ST NORTH * 0.3 = INR 400 * 0.3 = 120 ST NORTH * 0.3 = INR 400 * 0.3 = 120 ST Table SAP AG 7

8 Technical solution We will see how to leverage the transformation end routine to implement the above mentioned Business scenario. This process is elaborated step by step:- Step 1 - Create the target info cube In the first step we will create the target info cube to load the detailed information at the vendor level (Figure 8). Following should be the structure of the Cube:- Step 2 Create transformation Figure 8 In second step we will create the transformation between the data source and our target info cube. We will select the transfer rule Direct assignment for the entire field except the vendor which will be left unassigned. As shown in the Figure 9 Figure SAP AG 8

9 Step 3 Maintain end routine In the step 3 we will implement the end routine in this transformation, in the earlier portion of this document it has been elaborated how to maintain the end routine however it is depicted again in Figure 10. Go here to maintain the End routine. After maintaining it, the new symbol will change to pencil symbol which signifies that start routine is Maintained.While in display mode the existence of the end routine will be signified by the specs symbol. Figure- 10 In the subsequent window we need to write the end routine, the same is explained below PROGRAM trans_routine. * * * CLASS routine DEFINITION * * * * * CLASS lcl_transform DEFINITION. PUBLIC SECTION. * Attributs DATA: p_check_master_data_exist TYPE RSODSOCHECKONLY READ-ONLY, *- Instance for getting request runtime attributs; * Available information: Refer to methods of * interface 'if_rsbk_request_admintab_view' p_r_request TYPE REF TO if_rsbk_request_admintab_view READ-ONLY. PRIVATE SECTION. TYPE-POOLS: rsd, rstr. * Rule specific types TYPES: BEGIN OF _ty_s_tg_1, * InfoObject: 0FISCPER Fiscal year / period. FISCPER TYPE /BI0/OIFISCPER, * InfoObject: 0FISCVARNT Fiscal year variant. FISCVARNT TYPE /BI0/OIFISCVARNT, * InfoObject: ZZVENDOR Vendor. /BIC/ZZVENDOR TYPE /BIC/OIZZVENDOR, * InfoObject: 0MATERIAL Material. MATERIAL TYPE /BI0/OIMATERIAL, * InfoObject: REGION06 Region. /BIC/REGION06 TYPE /BIC/OIREGION06, * InfoObject: 0AMOUNT Amount SAP AG 9

10 AMOUNT TYPE /BI0/OIAMOUNT, * InfoObject: 0QUANTITY Quantity. QUANTITY TYPE /BI0/OIQUANTITY, * InfoObject: 0CURRENCY Currency Key. CURRENCY TYPE /BI0/OICURRENCY, * InfoObject: 0UNIT Unit of Measure. UNIT TYPE /BI0/OIUNIT, * Field: RECORD. RECORD TYPE RSARECORD, END OF _ty_s_tg_1. TYPES: _ty_t_tg_1 TYPE STANDARD TABLE OF _ty_s_tg_1 WITH NON-UNIQUE DEFAULT KEY. *$*$ begin of global - insert your declaration only below this line *-* *********************************************************************** * Global data declaration *********************************************************************** * DATA: BEGIN OF INT_TAB_VENDOR, VENDOR TYPE /BIC/OIZZVENDOR, PREFERENCEFACTOR TYPE /BIC/OIZPREFFCT, REGION TYPE /BIC/OIREGION06, END OF INT_TAB_VENDOR. DATA: I_T_VENDOR LIKE TABLE OF INT_TAB_VENDOR. Data and TYPE declaration of internal table similar to vendor master data table to load the vendor master data intermittently. *$*$ end of global - insert your declaration only before this line *-* METHODS end_routine IMPORTING request type rsrequest datapackid type rsdatapid EXPORTING monitor type rstr_ty_t_monitors CHANGING RESULT_PACKAGE type _ty_t_tg_1 RAISING cx_rsrout_abort. METHODS inverse_end_routine IMPORTING i_th_fields_outbound TYPE rstran_t_field_inv i_r_selset_outbound TYPE REF TO cl_rsmds_set i_is_main_selection TYPE rs_bool i_r_selset_outbound_complete TYPE REF TO cl_rsmds_set i_r_universe_inbound TYPE REF TO cl_rsmds_universe CHANGING c_th_fields_inbound TYPE rstran_t_field_inv c_r_selset_inbound TYPE REF TO cl_rsmds_set c_exact TYPE rs_bool. ENDCLASS. "routine DEFINITION *$*$ begin of 2nd part global - insert your code only below this line * 2008 SAP AG 10

11 ... "insert your code here *$*$ end of 2nd part global - insert your code only before this line * * * * CLASS routine IMPLEMENTATION * * * * * CLASS lcl_transform IMPLEMENTATION. * * * Method end_routine * * * Calculation of result package via end routine * Note: All not overwritten field values within the routine * are transferred from the corresponding source fields. This * means, all fields not supplied by the transformation source * are send with initial values to the transformation target. * * * <-> result package * * METHOD end_routine. *=== Segments === FIELD-SYMBOLS: <RESULT_FIELDS> TYPE _ty_s_tg_1. DATA: MONITOR_REC TYPE rstmonitor. *$*$ begin of routine - insert your code only below this line *-*... "insert your code here *-- fill table "MONITOR" with values of structure "MONITOR_REC" *- to make monitor entries... "to cancel the update process * raise exception type CX_RSROUT_ABORT. ************************************************************************ ******************** * Local data declarartion ************************************************************************ ******************** DATA: E_S_RESULT TYPE _ty_s_tg_1. DATA: E_T_RESULT TYPE _ty_t_tg_1. Declaration of Intermediate Variables DATA: AMOUNT LIKE E_S_RESULT-AMOUNT. DATA: QUANTITY LIKE E_S_RESULT-QUANTITY. DATA: VAR_AMOUNT LIKE E_S_RESULT-AMOUNT. DATA: VAR_QUANTITY LIKE E_S_RESULT-QUANTITY SAP AG 11

12 ** ********************************************************************** * Read master data of vendor ************************************************************************* SELECT /BIC/ZZVENDOR /BIC/ZPREFFCT /BIC/REGION06 FROM /BIC/PZZVENDOR INTO TABLE I_T_VENDOR WHERE OBJVERS = 'A' AND /BIC/REGION06 <> ''. Transfer of vendor master data to internal table. IF SY-SUBRC = 4. RAISE EXCEPTION TYPE CX_RSROUT_ABORT. ENDIF. SORT I_T_VENDOR BY REGION. LOOP AT RESULT_PACKAGE INTO E_S_RESULT. READ TABLE I_T_VENDOR INTO INT_TAB_VENDOR WITH KEY REGION = E_S_RESULT-/BIC/REGION06. VAR_AMOUNT = E_S_RESULT-AMOUNT. VAR_QUANTITY = E_S_RESULT-QUANTITY. Loop to fill the result package calculating the amount and quantity for vendors based on the logic described above. LOOP AT I_T_VENDOR INTO INT_TAB_VENDOR WHERE REGION = E_S_RESULT-/BIC/REGION06. AMOUNT = VAR_AMOUNT * INT_TAB_VENDOR-PREFERENCEFACTOR. QUANTITY = VAR_QUANTITY * INT_TAB_VENDOR-PREFERENCEFACTOR. MOVE INT_TAB_VENDOR-VENDOR TO E_S_RESULT-/BIC/ZZVENDOR. MOVE AMOUNT TO E_S_RESULT-AMOUNT. MOVE QUANTITY TO E_S_RESULT-QUANTITY. APPEND E_S_RESULT TO E_T_RESULT. ENDLOOP. ENDLOOP. REFRESH RESULT_PACKAGE. MOVE E_T_RESULT[] TO RESULT_PACKAGE[]. *$*$ end of routine - insert your code only before this line *-* ENDMETHOD. "end_routine * * 2008 SAP AG 12

13 * Method inverse_end_routine * * * * This subroutine needs to be implemented only for direct access * (for better performance) and for the Report/Report Interface * (drill through). * The inverse routine should transform a projection and * a selection for the target to a projection and a selection * for the source, respectively. * If the implementation remains empty all fields are filled and * all values are selected. * * * * * * METHOD inverse_end_routine. *$*$ begin of inverse routine - insert your code only below this line*-*... "insert your code here *$*$ end of inverse routine - insert your code only before this line *-* ENDMETHOD. ENDCLASS. "inverse_end_routine "routine IMPLEMENTATION Step 4 Create and execute the Data transfer process In the last step we need to create the DTP to execute the transformation and load data into Data target. Figure 11 After executing the DTP we will check the data loaded into target cube whether its up to expectation or not SAP AG 13

14 List Cube Output for Target Cube ZPROCURE Figure- 12 As shown in the Figure12 the data loaded in the target cube is as per expectation SAP AG 14

15 Related contents Routines in Transformation End Routine Writing Routines in Transformation SAP AG 15

16 Disclaimer and Liability Notice This document may discuss sample coding or other information that does not include SAP official interfaces and therefore is not supported by SAP. Changes made based on this information are not supported and can be overwritten during an upgrade. SAP will not be held liable for any damages caused by using or misusing the information, code or methods suggested in this document, and anyone using these methods does so at his/her own risk. SAP offers no guarantees and assumes no responsibility or liability of any type with respect to the content of this technical article or code sample, including any liability resulting from incompatibility between the content within this document and the materials and services offered by SAP. You agree that you will not hold, or seek to hold, SAP responsible or liable with respect to the content of this document SAP AG 16

Step by Step Approach for End Routine with Look Up

Step by Step Approach for End Routine with Look Up Step by Step Approach for End Routine with Look Up Applies to: SAP BW 3.x & SAP BI Net Weaver 2004s. For more information, visit the EDW homepage. Summary This document will give the reader detailed information

More information

How to Write Inverse Routine with Expert Routine

How to Write Inverse Routine with Expert Routine How to Write Inverse Routine with Expert Routine Applies to: Development and support based on SAP BI 7.0 For more information, visit the Business Intelligence homepage. Summary The article shows the example

More information

Routines in SAP BI 7.0 Transformations

Routines in SAP BI 7.0 Transformations Routines in SAP BI 7.0 Transformations Applies to: SAP BI 7.0. For more information, visit the Business Intelligence homepage. Summary This paper gives an overview about the different routines available

More information

Step by Step Procedure for DSO Creation

Step by Step Procedure for DSO Creation Step by Step Procedure for DSO Creation Applies to: SAP BI 7.0. For more information, visit the EDW homepage. Summary This article discusses about the step by step procedure for creating a DSO. Author:

More information

SAP BW Copy Existing DTP for Data Targets

SAP BW Copy Existing DTP for Data Targets SAP BW Copy Existing DTP for Data Targets Applies to: SAP BI Consultants with ABAP Knowledge. For more information, visit the EDW HomePage. Summary Copy existing DTP to a new one in not possible in SAP

More information

Role and Scope of ABAP in SAP BI

Role and Scope of ABAP in SAP BI Role and Scope of ABAP in SAP BI Applies to: SAP NetWeaver BW. For more information, visit the EDW homepage Summary The document provides a detailed description of the usage of APAP in SAP BI. Author:

More information

Reporting Duplicate Entries

Reporting Duplicate Entries Applies to: SAP BI 7.0 and above. For more information, visit the Business Intelligence Homepage. Summary It is a common reporting requirement to display duplicate entries based on a characteristic. This

More information

DB Connect with Delta Mechanism

DB Connect with Delta Mechanism Applies to: SAP BI/BW. For more information, visit the EDW homepage Summary This Article demonstrates the steps for handling Delta mechanism with Relational Database Management System (RDBMS) like SQL,

More information

Maintaining Roles and Authorizations in BI7.0 - RSECADMIN

Maintaining Roles and Authorizations in BI7.0 - RSECADMIN Maintaining Roles and Authorizations in BI7.0 - RSECADMIN Applies to: SAP Business Intelligence 7.0. For more information, visit the Business Intelligence homepage. Summary This paper will take you through

More information

Using Nested Exception Aggregation in BEx Reports- Scenario

Using Nested Exception Aggregation in BEx Reports- Scenario Using Nested Exception Aggregation in BEx Reports- Scenario Applies to: SAP BW 3.x & SAP BI Net Weaver 2004s. For more information, visit the Business Intelligence homepage. Summary The Objective of this

More information

Table Row Popup in Web Dynpro Component

Table Row Popup in Web Dynpro Component Table Row Popup in Web Dynpro Component Applies to Web Dynpro for ABAP, NW 7.0. For more information, visit the Web Dynpro ABAP homepage. Summary This document helps to create Table Rowpopin in a Web Dynpro

More information

How to Display Result Row in One Line While Reporting On Multiproviderer

How to Display Result Row in One Line While Reporting On Multiproviderer How to Display Result Row in One Line While Reporting On Multiproviderer Applies to: SAP BW 3.x, BI 7.0 developers and Reporting Users. For more information, visit the Business Intelligence home page Summary

More information

Step by Step Guide on How to Use Cell Definition in BEx Query

Step by Step Guide on How to Use Cell Definition in BEx Query Step by Step Guide on How to Use Cell Definition in BEx Query Applies to: SAP BI 7.0. For more information, visit the EDW homepage. Summary This article explains the functionalities of Cell Definition

More information

Using Query Extract to Export Data from Business warehouse, With Pros and Cons Analyzed

Using Query Extract to Export Data from Business warehouse, With Pros and Cons Analyzed Using Query Extract to Export Data from Business warehouse, With Pros and Cons Analyzed Applies to: SAP BW 3.X & BI 7.0. For more information, visit the Business Intelligence homepage. Summary This article

More information

Using Rule Group in SAP-BI. Part - 1

Using Rule Group in SAP-BI. Part - 1 Applies to: SAP BW 7.X. Summary This article gives clear picture about how to use Rule Group (s) using Rule Type Routine in SAP-BI. Author: Surendra Kumar Reddy Koduru Company: ITC Infotech India Ltd.

More information

Creation of Sets in SAP-ABAP, How to Read them INI SAP-ABAP Reports

Creation of Sets in SAP-ABAP, How to Read them INI SAP-ABAP Reports Creation of Sets in SAP-ABAP, How to Read them INI SAP-ABAP Reports Applies to: This Article is intended for all those ABAPers who are interested in creating SAP-SETS and use them in ABAP. For more information,

More information

Custom Process types Remote Trigger and End Time

Custom Process types Remote Trigger and End Time SDN Contribution Custom Process types Remote Trigger and End Time Applies to: SAP BW 3.1C and Above. Summary Development 1: We sometimes have loads in our process chains whose status and runtime don t

More information

Customized Transaction to Trigger Process Chain from Failed Step

Customized Transaction to Trigger Process Chain from Failed Step Customized Transaction to Trigger Process Chain from Failed Step Applies to: SAP BW 3.x & SAP BI NetWeaver 2004s. For more information, visit the Business Intelligence homepage. Summary There are multiple

More information

Step-By-Step guide to Virtual InfoCube Implementation

Step-By-Step guide to Virtual InfoCube Implementation Step-By-Step guide to Virtual InfoCube Implementation Applies to: SAP NetWeaver BW. For more information, visit the EDW homepage Summary This article provides a detailed insight into Virtual Infocube data

More information

Extracting Missing Fields of Data Source Which Are Present In Their Extract Structure

Extracting Missing Fields of Data Source Which Are Present In Their Extract Structure Extracting Missing Fields of Data Source Which Are Present In Their Extract Structure Applies to: ECC 6.0 and BI 3.x and 7.0 For more information, visit the Business Intelligence homepage. Summary Many

More information

Step by Step Method for File Archival in BW

Step by Step Method for File Archival in BW Step by Step Method for File Archival in BW Applies to: SAP BW 3.x & SAP BI Net Weaver 2004s. For more information, visit the EDW homepage. Summary This document will give the reader step by step approach

More information

Process Chain Log Deletion

Process Chain Log Deletion Applies to: SAP BW 3.x & SAP BI Net Weaver 2004s. For more information, visit the EDW homepage Summary Process chains are used in BW landscape to automate the loading sequence. There are multiple process

More information

Performance Management in Data Loading: an Overview

Performance Management in Data Loading: an Overview Performance Management in Data Loading: an Overview Applies to: SAP BI 7.0 / SAP Net weaver 2004s (Support package 14-17). For more information, visit the EDW homepage. Summary This documents talks about

More information

Easy Lookup in Process Integration 7.1

Easy Lookup in Process Integration 7.1 Easy Lookup in Process Integration 7.1 Applies to: SAP NetWeaver Process Integration 7.1 For more information, visit the SOA Management homepage. Summary Unlike previous version of PI (7.0) / XI (3.0,

More information

Generate Export Data Source

Generate Export Data Source Applies to: SAP BI 7.0 developers and support Users. For more information, visit the EDW homepage Summary This paper describes the data mart interface which makes it possible to update data from one data

More information

Explore to the Update Tab of Data Transfer Process in SAP BI 7.0

Explore to the Update Tab of Data Transfer Process in SAP BI 7.0 Explore to the Update Tab of Data Transfer Process in SAP BI 7.0 Applies to: SAP BI 2004s or SAP BI 7.x. For more information visit the Enterprise Data Warehousing. Summary This article will explain about

More information

Open Hub Destination - Make use of Navigational Attributes

Open Hub Destination - Make use of Navigational Attributes Open Hub Destination - Make use of Navigational Attributes Applies to: SAP BI 7.0. For more information visit the Enterprise Data Warehousing Summary This paper tells about usage of Open Hub Destination

More information

Standalone BW System Refresh

Standalone BW System Refresh Applies to: Software Component: SAP_BW. For more information, visit the EDW homepage Summary BW relevant steps/scenarios during refresh of an existing non-productive BW system from productive BW system

More information

SDN Community Contribution

SDN Community Contribution SDN Community Contribution (This is not an official SAP document.) Disclaimer & Liability Notice This document may discuss sample coding or other information that does not include SAP official interfaces

More information

Using Radio Buttons in Web Template

Using Radio Buttons in Web Template Using Radio Buttons in Web Template Applies to: SAP BW 3.5. For more information, visit the Business Intelligence homepage. Summary One of the ideal requirements in the BW Web Reporting is the user wants

More information

MDM Syndicator: Custom Items Tab

MDM Syndicator: Custom Items Tab MDM Syndicator: Custom Items Tab Applies to: SAP NetWeaver Master Data Management (MDM) SP04, SP05 and SP06. For more information, visit the Master Data Management homepage. Summary This article provides

More information

How to Default Variant Created for Report Developed In Report Painter/Writer

How to Default Variant Created for Report Developed In Report Painter/Writer How to Default Variant Created for Report Developed In Report Painter/Writer Applies to: Any business organization having reports developed using Report Painter/Report Writer. This is applicable from R/3

More information

How to Create Top of List and End of List of the ALV Output in Web Dynpro for ABAP

How to Create Top of List and End of List of the ALV Output in Web Dynpro for ABAP How to Create Top of List and End of List of the ALV Output in Web Dynpro for ABAP Applies to: SAP Netweaver 2004S: Web Dynpro for ABAP. For more information, visit the User Interface Technology homepage.

More information

Recreating BIA Indexes to Address the Growth of Fact Index Table

Recreating BIA Indexes to Address the Growth of Fact Index Table Recreating BIA Indexes to Address the Growth of Fact Index Table Applies to: Software Component: SAP_BW.Release: 700 BIA version: 53 Summary In this article we would learn the application of recreating

More information

Hierarchy in Business Objects with Expanded Hierarchy Logic

Hierarchy in Business Objects with Expanded Hierarchy Logic Hierarchy in Business Objects with Expanded Hierarchy Logic Applies to: SAP BW BO Integration Summary The current article talks about ways and means of achieving an expanded hierarchy view in the BO reports

More information

Restricting F4 (Input Help) Values While Running a SAP BW Query

Restricting F4 (Input Help) Values While Running a SAP BW Query Restricting F4 (Input Help) Values While Running a SAP BW Query Applies to: SAP BI 7.01 Summary This article briefs out the way to restrict F4 values (Input help values) while running a SAP BW query with

More information

Linking Documents with Web Templates

Linking Documents with Web Templates Linking Documents with Web Templates Summary This article explains certain ways to link documents with our Web-Templates which is a useful way of attaching information with a query. When the enduser runs

More information

Custom BADI Using Function Module UJQ_RUN_AXIS_QUERY

Custom BADI Using Function Module UJQ_RUN_AXIS_QUERY Custom BADI Using Function Module UJQ_RUN_AXIS_QUERY Applies to: SAP Business Planning and Consolidation for NetWeaver 7.0. Summary This Guide covers how to use Custom BADI and the functionality of the

More information

Developing Crystal Reports on SAP BW

Developing Crystal Reports on SAP BW Developing Crystal Reports on SAP BW Applies to: SAP BusinessObjects Crystal Reports. Summary This white paper explores various methods of accessing SAP BW data through Crystal Reports. Author: Arka Roy

More information

Planning Functions and Characteristic Relationship in Integrated Planning

Planning Functions and Characteristic Relationship in Integrated Planning Planning Functions and Characteristic Relationship in Integrated Planning Applies to: SAP BI 7.0 developers and Reporting Users. For more information, visit the EDW homepage Summary This document explains

More information

BW Reconciliation. Applies to: Summary. Author Bio

BW Reconciliation. Applies to: Summary. Author Bio Applies to: SAP Net Weaver Business Warehouse (Formerly BI) Business Intelligence homepage. For more information, visit the Business Intelligence homepage. For more information, visit the EDW homepage.

More information

SMT (Service Mapping Tool)

SMT (Service Mapping Tool) Applies to: This document applies to SAP versions ECC 6.0. For more information, visit the ABAP homepage. Summary This article contains the guidelines for using the SMT (Service mapping Tool) Mapping.

More information

Replacement Path: Explained with an Illustrated Example

Replacement Path: Explained with an Illustrated Example Replacement Path: Explained with an Illustrated Example Applies to: SAP NetWeaver BW. For more information, visit the EDW homepage Summary The document explains the purpose and implementation method of

More information

Procedure to Trigger Events in Remote System Using an ABAP Program

Procedure to Trigger Events in Remote System Using an ABAP Program Procedure to Trigger Events in Remote System Using an ABAP Program Applies to: SAP BW 3.x, SAP BI 7.x, SAP ECC, APO Systems. Summary This document gives the procedure to trigger events in a Remote System

More information

Performance Tuning in SAP BI 7.0

Performance Tuning in SAP BI 7.0 Applies to: SAP Net Weaver BW. For more information, visit the EDW homepage. Summary Detailed description of performance tuning at the back end level and front end level with example Author: Adlin Sundararaj

More information

Triggering the Process Chains at Particular Date using Events

Triggering the Process Chains at Particular Date using Events Triggering the Process Chains at Particular Date using Events Applies to: SAP BW 3.5, Will also work on SAP BI 7 For more information, visit the Business Intelligence homepage Summary This document discusses

More information

Managing Transports in SAP BW 3.5 and BI 7.0

Managing Transports in SAP BW 3.5 and BI 7.0 Managing Transports in SAP BW 3.5 and BI 7.0 Applies to: SAP BW 3.5/SAP BI 7.0. For more information, visit the Business Intelligence homepage. Summary This document explains all the features associated

More information

Load Info Cube in SCM 5.0 (BI 7.0)

Load Info Cube in SCM 5.0 (BI 7.0) Applies to: SCM 5.0 For more information, visit the Business Intelligence homepage. Summary The article illustrates the steps to load an info cube in SCM 5.0 Author: Bijal Parmar Company: Larsen & Toubro

More information

How to use Boolean Operations in the Formula as Subsidiary for IF Condition

How to use Boolean Operations in the Formula as Subsidiary for IF Condition How to use Boolean Operations in the Formula as Subsidiary for IF Condition Applies to: SAP BW 3.5 & BI 7.0. For more information, visit the EDW homepage. Summary This paper will explain you how to use

More information

Step By Step: the Process of Selective Deletion from a DSO

Step By Step: the Process of Selective Deletion from a DSO Step By Step: the Process of Selective Deletion from a DSO Applies to: SAP NetWeaver BW. For more information, visit the EDW homepage. Summary Selective deletion from DSO refers to deleting specific values

More information

Analysis Process Designer (APD) Step by Step Business Intelligence

Analysis Process Designer (APD) Step by Step Business Intelligence Analysis Process Designer (APD) Step by Step Business Intelligence Applies to: This article applies to SAP_BW 350 and SAP_BW 700 with highest support package SAPKW70017. For more information, visit the

More information

Deploying BusinessObjects Explorer on Top of a SAP BI Query

Deploying BusinessObjects Explorer on Top of a SAP BI Query Deploying BusinessObjects Explorer on Top of a SAP BI Query Applies to: SAP BI NetWeaver 2004s, BusinessObjects Explorer 3.1. For more information, visit the Business Intelligence homepage. Summary The

More information

Creation of Key Figures with Higher Decimal Place Precision

Creation of Key Figures with Higher Decimal Place Precision Creation of Key Figures with Higher Decimal Place Precision Applies to: SAP Business Intelligence 7.0. Summary The objective of this Document is to explain how to Create Key figures with higher number

More information

Open Text DocuLink Configuration - To Access Documents which are Archived using SAP

Open Text DocuLink Configuration - To Access Documents which are Archived using SAP Open Text DocuLink Configuration - To Access Documents which are Archived using SAP Applies to: Open Text DocuLink for SAP Solutions 9.6.2. For more information, visit http://www.opentext.com Summary Open

More information

How to Work with F4 Input Help Effectively in BEX

How to Work with F4 Input Help Effectively in BEX How to Work with F4 Input Help Effectively in BEX Applies to: SAP BI 7.0 developers and Reporting Users. For more information, visit the Business Intelligence home page Summary This document helps to overcome

More information

Data Extraction & DS Enhancement in SAP BI Step by Step

Data Extraction & DS Enhancement in SAP BI Step by Step Data Extraction & DS Enhancement in SAP BI Step by Step Applies to: SAP BI 7.0, SAP ABAP, For more information, visit the Business Intelligence homepage. Summary The objective of the article is to outline

More information

SAP BI BO Unit/Currency Logic for Unknown Units Case Study

SAP BI BO Unit/Currency Logic for Unknown Units Case Study SAP BI BO Unit/Currency Logic for Unknown Units Case Study Applies to: This solution is implemented for a combination of SAP BO XI 3.1 SP2 FP 2.1 and SAP NW BI 7.0 EHP1 SP6 For more information, visit

More information

Material Master Archiving in Simple Method

Material Master Archiving in Simple Method Material Master Archiving in Simple Method Applies to: This article is applicable for SAP MM Module of SAP Version SAP 4.7 till SAP ECC 6.0 Summary This article describes a process called Material Master

More information

ABAP HR: Standard Info Type Enhancement

ABAP HR: Standard Info Type Enhancement ABAP HR: Standard Info Type Enhancement Applies to: This document applies to SAP ECC 6.0, SAP Netweaver 2004s. For more information, visit the ABAP homepage. Summary This article contains the step by step

More information

Using ABAP-OO in BI- Transformations through Custom Class

Using ABAP-OO in BI- Transformations through Custom Class Using ABAP-OO in BI- Transformations through Custom Class Applies to: BI 7.0 BW 3.5. For more information, visit the Business Intelligence homepage. Summary: In BI 7.0, BI Transformation routines must

More information

Integration of Web Dynpro for ABAP Application in Microsoft Share Point Portal

Integration of Web Dynpro for ABAP Application in Microsoft Share Point Portal Integration of Web Dynpro for ABAP Application in Microsoft Share Point Portal Applies to: Web Dynpro ABAP. Summary This tutorial explains how to display Web Dynpro ABAP Application in Microsoft Share

More information

Step by Step Guide to Enhance a Data Source

Step by Step Guide to Enhance a Data Source Step by Step Guide to Enhance a Data Source Applies to: SAP BI 7.0. For more information, visit the Business Intelligence homepage Summary This article provides a step by step guide to enhance a Standard

More information

Freely Programmed Help- Web Dynpro

Freely Programmed Help- Web Dynpro Freely Programmed Help- Web Dynpro Applies to: SAP ABAP Workbench that supports Web dynpro development. For more information, visit the Web Dynpro ABAP homepage. Summary In addition to the Dictionary Search

More information

Reading Enhanced DataSource fields for the Remote Cube

Reading Enhanced DataSource fields for the Remote Cube Reading Enhanced DataSource fields for the Remote Cube Applies to: SAP BI 7.0. For more information, visit the EDW homepage. Summary SAP Remote Cube does not display the enhanced fields in the data source.

More information

Currency Translation in SAP BI Step by step Guide

Currency Translation in SAP BI Step by step Guide Currency Translation in SAP BI Step by step Guide Applies to: SAP BIW 3.5, SAP NetWeaver 7.0. For more information, visit the Business Intelligence homepage. Summary Currency translation allows you to

More information

Customizing Characteristic Relationships in BW-BPS with Function Modules

Customizing Characteristic Relationships in BW-BPS with Function Modules Customizing Characteristic Relationships in BW-BPS with Function Modules Applies to: BW-BPS (Ver. 3.5 and BI 7.0) SEM-BPS (Ver 3.2 onwards) Summary This paper discusses the definition of a exit type characteristic

More information

Data Mining: Decision Trees

Data Mining: Decision Trees Applies to: SAP BI 7.0. For more information, visit the EDW homepage Summary This article about the Data Mining and the Data Mining methods provided by SAP in brief. It explains the classification method

More information

Implementing Customer Exit Reporting Variables as Methods

Implementing Customer Exit Reporting Variables as Methods Implementing Customer Exit Reporting Variables as Methods Applies to: SAP BI 7.0 For more information, visit the Business Intelligence homepage. Summary This article describes how we can implement customer

More information

Step by Step Guide How to Use BI Queries in Visual Composer

Step by Step Guide How to Use BI Queries in Visual Composer Step by Step Guide How to Use BI Queries in Visual Composer Applies to: SAP BW 7.x. For more information, visit the EBW homepage. Summary The objective of this Article is to explain step by step guide

More information

List of Values in BusinessObjects Web Intelligence Prompts

List of Values in BusinessObjects Web Intelligence Prompts List of Values in BusinessObjects Web Intelligence Prompts Applies to: This solution is implemented for a combination of SAP NW BI 7.0 and SAP BO XI 3.1. For more information visit Business Objects Home

More information

Real Time Data Acquisition (RDA) Overview and Step-by-Step Guide (SAPI and Web Services)

Real Time Data Acquisition (RDA) Overview and Step-by-Step Guide (SAPI and Web Services) Real Time Data Acquisition (RDA) Overview and Step-by-Step Guide (SAPI and Web Services) Applies to: SAP BI 7.0. For more information, visit the Business Intelligence homepage. Summary Sometimes business

More information

Steps for Implementation of Standard Data Store Object (DSO) for Purchase Cube in SAP BI 7.0

Steps for Implementation of Standard Data Store Object (DSO) for Purchase Cube in SAP BI 7.0 Steps for Implementation of Standard Data Store Object (DSO) for Purchase Cube in SAP BI 7.0 Applies to: SAP BI 7.0 Also works on SAP BW 3.5.For more information, visit the Business Intelligence Homepage.

More information

Step by Step Guide for PI Server Start and Stop Procedure

Step by Step Guide for PI Server Start and Stop Procedure Step by Step Guide for PI Server Start and Stop Procedure Applies to: This document applies to PI 7.0 and 7.1 and above. For more information, visit the Application Management homepage. Summary This document

More information

Database Statistics During ODS Activation

Database Statistics During ODS Activation Database Statistics During ODS Activation Applies to: SAP BW (3.5) / SAP BI (7.0). For more information, visit the EDW homepage Summary ODS Activation step periodically recalculates the statistics. This

More information

SAP Net Weaver 400s BI 7.0For more information, visit the Business Intelligence homepage.

SAP Net Weaver 400s BI 7.0For more information, visit the Business Intelligence homepage. Applies to: SAP Net Weaver 400s BI 7.0For more information, visit the Business Intelligence homepage. Summary This paper provides the step by step procedure on how to archive data in ODS/InfoCube using

More information

Data Mining: Scoring (Linear Regression)

Data Mining: Scoring (Linear Regression) Data Mining: Scoring (Linear Regression) Applies to: SAP BI 7.0. For more information, visit the EDW Homepage Summary This article deals with Data Mining and it explains the classification method Scoring

More information

Implying Security on Business Object XI 3.1 Universe having SAP BW as Source

Implying Security on Business Object XI 3.1 Universe having SAP BW as Source Implying Security on Business Object XI 3.1 Universe having SAP BW as Source Applies to: SAP Business Object XI 3.1. For more information, visit the Business Objects homepage. Summary This article describes

More information

How to Create View on Different Tables and Load Data through Generic Datasource based on that View

How to Create View on Different Tables and Load Data through Generic Datasource based on that View How to Create View on Different Tables and Load Data through Generic Datasource based on that View Applies to: SAP Business Intelligence (BI 7.0). For more information, visit the EDW homepage Summary This

More information

ABAP Code - Recipients (Specific Format) SAP BW Process Chain

ABAP Code -  Recipients (Specific Format) SAP BW Process Chain ABAP Code - Email Recipients (Specific Format) SAP BW Process Chain Applies to: This article is applicable to all the SAP BI consultants who are accustomed with SAP ABAP skills. For more information, visit

More information

How to Configure User Status in mysap SRM

How to Configure User Status in mysap SRM How to Configure User Status in mysap SRM Applies to: mysap SRM 5.5 For more information, visit the Supplier Relationship Management homepage. Summary There had been quite a few instances in SRM Forum

More information

Data Source Replication and Activation of Transfer Structures

Data Source Replication and Activation of Transfer Structures Data Source Replication and Activation of Transfer Structures Applies to: SAP Net Weaver BW. For more information, visit the EDW homepage Summary Detailed Documentation and practical implementation of

More information

Material Listing and Exclusion

Material Listing and Exclusion Material Listing and Exclusion Applies to: Applies to ECC 6.0. For more information, visit the Enterprise Resource Planning homepage Summary This document briefly explains how to restrict customers from

More information

Step by Step Guide to Creating a Process Type to Close an Open Request in a Cube in BI 7.0

Step by Step Guide to Creating a Process Type to Close an Open Request in a Cube in BI 7.0 Step by Step Guide to Creating a Process Type to Close an Open Request in a Cube in BI 7.0 Applies to: SAP BI 7.0. For more information, visit the Business Intelligence homepage. Summary You want to create

More information

Transfer Material Attributes (Material Type) from R/3 to SAP GRC Global Trade Services (GTS)

Transfer Material Attributes (Material Type) from R/3 to SAP GRC Global Trade Services (GTS) Transfer Material Attributes (Material Type) from R/3 to SAP GRC Global Trade Services (GTS) Applies to: This article and examples applies to ECC 6 and Global Trade System - SLL 7.0 and 7.1 Versions. For

More information

Information Broadcasting Part 3 Scheduling the First Report

Information Broadcasting Part 3 Scheduling the First Report Information Broadcasting Part 3 Scheduling the First Report Applies to: SAP BW 3.5 Summary This is part-3 article in the Information broadcasting (IB) series. Some things have already been discussed like

More information

Using Customer Exit Variables in BW/BI Reports Part - 1

Using Customer Exit Variables in BW/BI Reports Part - 1 Using Customer Exit Variables in BW/BI Reports Part - 1 Applies to: SAP BW 3.5, Will also work on SAP BI 7. For more information, visit the Business Intelligence homepage. Summary This article gives clear

More information

Methods of Selecting BOM Variant Parts in Variant Configuration

Methods of Selecting BOM Variant Parts in Variant Configuration Methods of Selecting BOM Variant Parts in Variant Configuration Applies to: SAP R/3 and ECC 6.0 For more information, visit the Product Lifecycle Management homepage. Summary This document explains in

More information

This article explains the steps to create a Move-in letter using Print Workbench and SAPScripts.

This article explains the steps to create a Move-in letter using Print Workbench and SAPScripts. Applies to: SAP IS-Utilities 4.6 and above. Summary This article explains the steps to create a Move-in letter using Print Workbench and SAPScripts. Author: Company: Hiral M Dedhia L & T Infotech Ltd.

More information

Validity Table in SAP BW/BI

Validity Table in SAP BW/BI Applies to: Applicable for SAP BI 3.x and above Summary To maintain the cubes non cumulative Key figures. Author: Om Ambulker Company: Cognizant, Pune Created on: 15 July 2011 Author Bio Om Ambulker is

More information

Creating Custom SU01 Transaction Code with Display and Password Reset Buttons

Creating Custom SU01 Transaction Code with Display and Password Reset Buttons Creating Custom SU01 Transaction Code with Display and Password Reset Buttons Applies to: All versions of SAP. Summary This article will explain you the process of creating custom SU01 transaction code

More information

A Step-by-Step Guide on IDoc-ALE between Two SAP Servers

A Step-by-Step Guide on IDoc-ALE between Two SAP Servers A Step-by-Step Guide on IDoc-ALE between Two SAP Servers Applies to: All modules of SAP where data need to transfer from one SAP System to another SAP System using ALE IDoc Methodology. For more information,

More information

Graphical Mapping Technique in SAP NetWeaver Process Integration

Graphical Mapping Technique in SAP NetWeaver Process Integration Graphical Mapping Technique in SAP NetWeaver Process Integration Applies to: SAP NetWeaver XI/PI mappings. For more information, visit the Repository-based Modeling and Design homepage. Summary This guide

More information

POWL: Infoset Generation with Web Dynpro ABAP

POWL: Infoset Generation with Web Dynpro ABAP POWL: Infoset Generation with Web Dynpro ABAP Applies to: WebDynpro ABAP Developer. For more information, visit the Web Dynpro ABAP homepage. Summary: This document explains how to create an Infoset, generate

More information

Setting up Connection between BW and R/3 for Data Load

Setting up Connection between BW and R/3 for Data Load Setting up Connection between BW and R/3 for Data Load Applies to: SAP BI 7.0. For more information, visit the Business Intelligence homepage. Summary This document guides to establish connection between

More information

SAP BW vs. SAP BusinessObjects Web Intelligence Functionalities

SAP BW vs. SAP BusinessObjects Web Intelligence Functionalities SAP BW vs. SAP BusinessObjects Web Intelligence Functionalities Applies to: SAP BW, SAP BusinessObjects. For more information, visit the Business Objects homepage. Summary This document discusses BW Bex/WAD

More information

Template Designer: Create Automatic PDF Documents for Attachment or Print Purpose

Template Designer: Create Automatic PDF Documents for Attachment or Print Purpose Template Designer: Create Automatic PDF Documents for Attachment or Print Purpose Applies to: SAP Customer Relationship Management (SAP CRM) Release 7.0 SP 01, November 2008. SAP NetWeaver 7.0 including

More information

Message Prioritization in Advanced Adapter Engine

Message Prioritization in Advanced Adapter Engine Message Prioritization in Advanced Adapter Engine Applies to: SAP Net Weaver PI 7.1. For more information, visit the Service Bus-based Integration homepage Summary Often it becomes necessary to make sure

More information

Web Dynpro ABAP: Dynamic Table

Web Dynpro ABAP: Dynamic Table Applies to: SAP ECC 6.0 Summary Normally ABAP consultants might be aware of how to create internal table dynamically. This article aims to help the consultants how to display the dynamic table using Web

More information

All about Compression

All about Compression Applies to: SAP BI 7.0 developers and Reporting Users. For more information, visit the EDW homepage. Summary This document will help to understand almost all aspects related to compression, advantages

More information

Applies To:...1. Summary...1. Table of Contents...1. Procedure..2. Code... Error! Bookmark not defined.0

Applies To:...1. Summary...1. Table of Contents...1. Procedure..2. Code... Error! Bookmark not defined.0 Applies To: Usage of Table Control in ABAP Summary Normally we use wizard if we are working with table control. This document helps us how to create a table control without using a wizard and how to manipulate

More information