Hi,
I have implemented a badi RSR_OLAP_BADI and activated it. But when I execute the query from RSRT transaction break point is not getting triggered. but when I click on generate report then the break point in Define method is getting triggred but break point in Compute method is not getting triggered.
Can any one please suggest where I am doing wrong? I reviewed the discussions, did search and followed the instructions I got in SCN.
In the BADI Class:
Attributes:
P_CHA_YOO_CH002 instance Public Type I
DEFINE Method:
DATA: ls_chanm TYPE rrke_s_chanm,
ls_kyfnm TYPE rsd_kyfnm.
FIELD-SYMBOLS: <ls_chanm> TYPE rrke_s_chanm.
CASE i_s_rkb1d-infocube.
WHEN'YOOGF_M51'.
ls_chanm-chanm = 'YOO_CH002'.
ls_chanm-mode = rrke_c_mode-read.
APPEND ls_chanm TO c_t_chanm.
WHENOTHERS.
ENDCASE.
COMPUTE Method:
FIELD-SYMBOLS: <fs_yoo_ch002> TYPEany.
ASSIGNCOMPONENT p_cha_yoo_ch002 OFSTRUCTURE c_s_data
TO<fs_yoo_ch002>.
IF<fs_yoo_ch002> ISASSIGNED.
<fs_yoo_ch002> = 'X'.
endif.
BADI implemetation and all methods are in active status.
Please suggest me.
Thanks,
Ranganadh.