Powered By

Free XML Skins for Blogger

Powered by Blogger

Tuesday, August 5, 2008

Implementation of a Category BW BI Transformation Rule Type

You can implement your own categories and group your own functions under them.

Add the following code in the BAdl implementation:

Coding Lines

Description

data: l_s_operand TYPE SFBEOPRND.


if i_key = SPACE.


l_s_operand-descriptn = .

Description of category

l_s_operand-tech_name = .

Name of category in uppercase letters

APPEND l_function TO c_operands.


exit.


endif.


To group functions in this category, add the following code to the BAdl implementation:

Coding Lines

Description

if i_key = .


l_s_operand-descriptn = .

Description of function

l_s_operand-tech_name = .

Name of function in uppercase letters

l_s_operand-tech_name = .

Name of class that implements BAdl

l_s_operand-tech_name = .

Name of method that implements BAdl

APPEND l_function TO c_operands.


exit.


endif.


No comments:

Archives