Application Development 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: 

how to use badi

Former Member
0 Kudos

hi experts,

i have created one BADI with name like as ZKKK .. and also i implemented..

now i want to use that BADI in my program . how to use this ?

Regards,

Kumar

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi

try these links:

<b>

http://help.sap.com/saphelp_nw04/helpdata/en/ee/a1d548892b11d295d60000e82de14a/frameset.htm

</b>

Refer these docs...

<b>

[Removed by the moderator.]

You can refer to the ppt to learn more about using BAdIs.

Regards Rk

Message was edited by:

Rk Pasupuleti

4 REPLIES 4

Former Member
0 Kudos

Hi

try these links:

<b>

http://help.sap.com/saphelp_nw04/helpdata/en/ee/a1d548892b11d295d60000e82de14a/frameset.htm

</b>

Refer these docs...

<b>

[Removed by the moderator.]

You can refer to the ppt to learn more about using BAdIs.

Regards Rk

Message was edited by:

Rk Pasupuleti

Former Member
0 Kudos

hi

good

go through this weblog which ll give you complete idea about using BADI in your program

/people/thomas.weiss/blog/2006/04/03/how-to-define-a-new-badi-within-the-enhancement-framework--part-3-of-the-series

thanks

mrutyun^

Former Member
0 Kudos

HI

Go through this link .

This will solve your doubt.

Remenber to call this method in your program

class cl_exithandler definition load. "Forward declaration

data exit type ref to if_ex_businessaddin. "Interface generated by your *implementataion

data wort(15) type c value 'Business Add-in'. "String to be changed

start-of-selection.

call method <b>cl_exithandler=>get_instance </b> "Factory call-

exporting "Method

exit name =’BUSINESSADDIN’

null instance accepted =’X’

changing instance = exit.

Bless u.