‎2007 Sep 24 8:37 AM
Hi,
I'm doing an enhancement for a std SAP prgm. Hence i wud like to use an exist User Exit to customized the program. But as when i debug the program, i realize that nothing is imported out from the below FM. I couldn't understand what went wrong. Please assist me..
CALL FUNCTION 'HR_GET_BUSINESS_ADD_IN'
EXPORTING
exit_name = 'XIR80001'
IMPORTING
is_implemented = l_is_implemented
CHANGING
instance = sap_exit1.
IF l_is_implemented EQ true.
lt_temse_tab[] = temse[] .
CALL METHOD sap_exit1->get_tempir8a
IMPORTING
retcode = ret_code
CHANGING
tempsetab = lt_temse_tab.
REFRESH temse .
CLEAR temse.
temse[] = lt_temse_tab[].
ENDIF.
Because the value for this -> l_is_implemented is initial hence it could not invoke the user exit's method -> get_tempir8a
THanks in advance,
Loo
‎2007 Sep 24 10:24 AM
In SE19 , check if any active implementations exist for the BAdI definition XIR80001.
Arya
‎2007 Sep 25 2:19 AM
Hi Arya,
I've checked and this definition is Activated. What else can i do?
Thanks,
Loo