Sei sulla pagina 1di 21

Routines in Transformations in SAP BI 7.

Applies to:
SAP BI 7.0. For more information, visit the EDW homepage.

Summary
This paper gives an overview about the different routines available in SAP BI 7.0 Transformation . In particular the paper highlights when and where an appropriate routine has to be used and shows how to implement .The paper explains the concepts based on a simple scenario for all the routines. The paper also gives the sample code and results at the end of each routine. Author: Ravindranath Reddy L

Company: Accenture India Pvt Ltd. Created on: 20 October 2010

Author Bio
The author works for Accenture India Pvt Ltd. His expertise includes SAP BI

SAP COMMUNITY NETWORK 2010 SAP AG

SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com 1

Routines in Transformations in SAP BI 7.0

Table of Content
Introduction ......................................................................................................................................................... 3 Scenario .......................................................................................................................................................... 3 Characteristic or Field Routine ........................................................................................................................... 4 Definition ......................................................................................................................................................... 4 How to Implement ........................................................................................................................................... 4 Sample Code .................................................................................................................................................. 6 Start Routine ....................................................................................................................................................... 7 Definition ......................................................................................................................................................... 7 Approach to Scenario ...................................................................................................................................... 7 How to Implement ........................................................................................................................................... 7 Sample Code ................................................................................................................................................ 10 End Routine ...................................................................................................................................................... 12 Definition ....................................................................................................................................................... 12 Approach to Scenario.................................................................................................................................... 12 How to Implement ......................................................................................................................................... 12 Sample Code ................................................................................................................................................ 14 Expert Routine .................................................................................................................................................. 15 Definition ....................................................................................................................................................... 15 Approach to Scenario .................................................................................................................................... 15 How to Implement ......................................................................................................................................... 15 Sample Code ................................................................................................................................................ 18 Related Content ................................................................................................................................................ 20 Disclaimer and Liability Notice .......................................................................................................................... 21

SAP COMMUNITY NETWORK 2010 SAP AG

SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com 2

Routines in Transformations in SAP BI 7.0

Introduction
Routines are used to define complex transformation rules. In most of the cases data wont be coming directly in desired form before sending to the target. In some cases output needs to be derived on some incoming data. In such cases we need to go for writing of routines at the transformation level. There are four types of Routines available Characteristic or Field Routine Start Routine End Routine Expert Routine The routine which we need to go for depends on when it needs to be executed. Suppose if some logic needs to be implemented before transformation then the start routine needs to be implemented. This Paper presents in detail about each of the above Routine. Scenario The Scenario is for each incoming record comes up with unique key job number with its Start and End Date. At the output there is one key figure Total no of days which is the difference of End and Start Dates and based on the key figure value Total no of days. This same scenario is taken to explain each routine.

SAP COMMUNITY NETWORK 2010 SAP AG

SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com 3

Routines in Transformations in SAP BI 7.0

Characteristic or Field Routine


Definition It operates on a single record for a single characteristic or key figure. The value gets modified in the routine based on one or more source fields before it is transferred to the target Approach to Scenario The Key figure total no of days needs to be populated using start and end dates. So to calculate total no of days we are going to write a field routine. But for that start and end date values need to be mapped to the key figure. How to Implement

In the above screen shot all the source fields are mapped one to one to the target. We have mapped start and end date to the key figure and now double click on the equal to symbol

SAP COMMUNITY NETWORK 2010 SAP AG

SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com 4

Routines in Transformations in SAP BI 7.0

Once clicked u can see the source fields start and end dates because we have mapped them. Now choose Rule Type as Routine. Once clicked routine it will take to the editor

SAP COMMUNITY NETWORK 2010 SAP AG

SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com 5

Routines in Transformations in SAP BI 7.0

We need to write the logic there. Once written it will take to the result which is nothing but total no of days.

The logic is written it is end date minus start date. Syntax is checked it showed no errors. Save the Routine and activate the transformation. Sample Code
RESULT = SOURCE_FIELDS-/BIC/RT_ENDT - SOURCE_FIELDS-/BIC/RT_SRTDT.

Output

SAP COMMUNITY NETWORK 2010 SAP AG

SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com 6

Routines in Transformations in SAP BI 7.0

Start Routine
Definition The start routine is run 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 source_package . Approach to Scenario For field routine it will act on each record but in start routine it will have all the data in source_package . In Start routine we will have the structure of the source fields. So in this scenario the key figure is not available in source. So in Start routine we calculate the total no of days for each record with its unique key job number and store them in an internal table. The internal table is global and it can be accessed every where. So we have to write a field routine for key figure total no of days mapped with job number. Using this job number we will read the value of key figure total no of days from internal table and update the result i.e. total no of days key figure. How to Implement

Click on start routine and it will take to the editor. In the start routine there will be table source_package which contains all the data and has the structure of source. Here we will read the job number from source_package and update it into internal table and total no of days key figure value into internal table using start and end dates.

SAP COMMUNITY NETWORK 2010 SAP AG

SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com 7

Routines in Transformations in SAP BI 7.0

SAP COMMUNITY NETWORK 2010 SAP AG

SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com 8

Routines in Transformations in SAP BI 7.0

Once this is done the value of key figure is in internal table and from there we need to get into target . So for that a field routine needs to be written to read from value from internal table. The key to internal table to get unique value is job number so job number is mapped to key figure.

Here Job number is mapped to the key figure. And a field routine is written to read the total no of days using this job number.

SAP COMMUNITY NETWORK 2010 SAP AG

SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com 9

Routines in Transformations in SAP BI 7.0

Sample Code Types: begin of itabtype,


job_numb type /bic/oirt_jobno, stg_numb type /bic/oirt_stgno, profile type /bic/oirt_prfl, tot_days type /bic/oirt_wkydy1, end of itabtype. data : itab type standard table of itabtype with key job_numb, wa_itab like line of itab. Keep this part in global section because we have to read the internal table once it is populated and hence it should be visible every where. data : wa_source_package type _ty_s_SC_1. loop at source_package into wa_ source_package. move wa_ source_package -/BIC/RT_JOBNO to wa_itab-job_numb. move wa_ source_package -/BIC/RT_stgNO to wa_itab-stg_numb. wa_itab-tot_days = wa_ source_package -/BIC/RT_ENDT - wa_ source_package /BIC/RT_SRTDT. if wa_itab-tot_days le 10 . wa_itab-profile = '(0-10)'. elseif wa_itab-tot_days gt 10 and wa_itab-tot_days le 20. wa_itab-profile = '(10-20)'. else. wa_itab-profile = '(20-NN)'. endif. append wa_itab to itab. endloop.

By this code we has populated the internal table and we has to get the values for the age profile and total no of days for this by using the key for the table i.e. job number

SAP COMMUNITY NETWORK 2010 SAP AG

SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com 10

Routines in Transformations in SAP BI 7.0

This is the code in the field routine which gets the value from the internal table and populates when the job number in the internal table is same as the coming job number
read table itab into wa_itab with key job_numb = SOURCE_FIELDS-/BIC/RT_JOBNO. if sy-subrc = 0. Result = wa_itab-profile. endif.

Output

SAP COMMUNITY NETWORK 2010 SAP AG

SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com 11

Routines in Transformations in SAP BI 7.0

End Routine
Definition 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 postprocess data after transformation on a package-by-package basis. Data is stored in result_package. Approach to Scenario End Routine is processed after start routine, mappings, field routines and finally before the values is transferred to the output. End routine has the structure of the target and result_package contains the entire data which finally is the output. For our scenario we have one to one mapping for all the fields except total no of days so in result_package it will not have the value for each record. So in End Routine we will calculate the key figure value for each record and modify the result_package and there by the output will also contain the key figure. How to Implement

In transformation all are mapped one to one. Click End Routine at the top it will take to the editor. There we have to modify the result_package with the key figure value updated.

SAP COMMUNITY NETWORK 2010 SAP AG

SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com 12

Routines in Transformations in SAP BI 7.0

SAP COMMUNITY NETWORK 2010 SAP AG

SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com 13

Routines in Transformations in SAP BI 7.0

In the end routine we will loop over the result_package and using the start and end dates of each record the key figure value is calculated and updated again into the result_package. Check the routine and save the routine and activate the transformation. Sample Code Data: wa_RESULT_PACKAGE type _ty_s_TG_1. Loop at RESULT_PACKAGE into wa_RESULT_PACKAGE. wa_RESULT_PACKAGE-/BIC/RT_WKYDY1 = wa_RESULT_PACKAGE-/BIC/RT_ENDT wa_RESULT_PACKAGE-/BIC/RT_SRTDT.
if wa_RESULT_PACKAGE-/BIC/RT_WKYDY1 le 10 . wa_RESULT_PACKAGE-/BIC/RT_PRFL = '(0-10)'. Else if wa_RESULT_PACKAGE-/BIC/RT_WKYDY1 gt 10 and wa_RESULT_PACKAGE-/BIC/RT_WKYDY1 le 20. wa_RESULT_PACKAGE-/BIC/RT_PRFL = '(10-20)'. else. wa_RESULT_PACKAGE-/BIC/RT_PRFL = '(20-NN)'. endif. modify RESULT_PACKAGE from wa_RESULT_PACKAGE. End loop.

Output

SAP COMMUNITY NETWORK 2010 SAP AG

SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com 14

Routines in Transformations in SAP BI 7.0

Expert Routine
Definition An Expert routine is a routine with contains both the source and target structure. we can use Expert routine if there are not sufficient functions to perform transformation. Approach to Scenario For Expert Routine every things needs to be written using coding. In simple an expert routine performs all the actions of Start Routine, Mappings, Field and End Routines. In Expert Routine we will read from source_package which contains all the data and update into result_package which should be the output and when doing we will calculate the key figure total no of days. How to Implement

Click Transformation and go to edit and click the expert routine. If clicked it asks to confirm the transformation mappings will be deleted and will be taken to coding part editor.

SAP COMMUNITY NETWORK 2010 SAP AG

SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com 15

Routines in Transformations in SAP BI 7.0

Click yes to continue

Here we can see that both the source fields and result fields are available because the expert routine has to take care of every thing. It should cover the transformation mappings, start and end routine codes. The code given below is implemented in the editor of expert routine and shown in below screenshot.

SAP COMMUNITY NETWORK 2010 SAP AG

SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com 16

Routines in Transformations in SAP BI 7.0

SAP COMMUNITY NETWORK 2010 SAP AG

SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com 17

Routines in Transformations in SAP BI 7.0

After check the consistency and save and activate as we do for start and end routine.

Then the transformation will have only one mapping from source to target saying expert routine .See that start and end routine are also disabled. And activate the transformation. Sample Code
Data : wa_SOURCE_PACKAGE type _ty_s_SC_1. * creating work areas* data : wa_RESULT_PACKAGE type _ty_s_TG_1. loop at SOURCE_PACKAGE into wa_SOURCE_PACKAGE . *transformation mappings mappings in code * move wa_SOURCE_PACKAGE -/BIC/RT_JOBNO to wa_RESULT_PACKAGE-/BIC/RT_JOBNO. move wa_SOURCE_PACKAGE -/BIC/RT_STGNO to wa_RESULT_PACKAGE-/BIC/RT_STGNO. move wa_SOURCE_PACKAGE -/BIC/RT_SRTDT to wa_RESULT_PACKAGE-C/RT_SRTDT. move wa_SOURCE_PACKAGE -/BIC/RT_ENDT to wa_RESULT_PACKAGE-/BIC/RT_ENDT. wa_RESULT_PACKAGE-/BIC/RT_WKYDY1 = wa_SOURCE_PACKAGE -/BIC/RT_ENDT wa_SOURCE_PACKAGE -/BIC/RT_SRTDT. if wa_RESULT_PACKAGE-/BIC/RT_WKYDY1 le 10 . wa_RESULT_PACKAGE-/BIC/RT_PRFL = '(0-10)'. elseif wa_RESULT_PACKAGE-/BIC/RT_WKYDY1 gt 10 and wa_RESULT_PACKAGE-/BIC/RT_WKYDY1 le 20. wa_RESULT_PACKAGE-/BIC/RT_PRFL = '(10-20)'. else. wa_RESULT_PACKAGE-/BIC/RT_PRFL = '(20-NN)'. endif. append wa_RESULT_PACKAGE to RESULT_PACKAGE. endloop.

SAP COMMUNITY NETWORK 2010 SAP AG

SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com 18

Routines in Transformations in SAP BI 7.0

1) In Expert Routine we will fetch the values from source_package into work area of source_package . 2) Move this work area to the output work area i.e. to result_package (This step is nothing but transformation mapping in code) 3) Append the work area to the result_package (which actually is the output). 4) Continue Steps 1-3 until all the records are transferred from source to target. ( taken care by loop statement) Output

SAP COMMUNITY NETWORK 2010 SAP AG

SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com 19

Routines in Transformations in SAP BI 7.0

Related Content
For more information, visit the EDW homepage.

SAP COMMUNITY NETWORK 2010 SAP AG

SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com 20

Routines in Transformations in SAP BI 7.0

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 COMMUNITY NETWORK 2010 SAP AG

SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com 21

Potrebbero piacerti anche