Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

BADI

Former Member
0 Likes
370

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

2 REPLIES 2
Read only

Former Member
0 Likes
345

In SE19 , check if any active implementations exist for the BAdI definition XIR80001.

Arya

Read only

0 Likes
345

Hi Arya,

I've checked and this definition is Activated. What else can i do?

Thanks,

Loo