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: 

BADI Documents

Former Member
0 Kudos

Hi experts,

I am looking for a small help,

Can any one of you provide me with a good learning material for BADI.

regards,

Varghese

1 REPLY 1

Former Member
0 Kudos

Hi Varghese,

Please check this link

Classical BAdI

http://help.sap.com/erp2005_ehp_03/helpdata/EN/ee/a1d548892b11d295d60000e82de14a/frameset.htm

Steps to Activate BAdI Implementations

http://help.sap.com/saphelp_nw04/helpdata/en/5f/071eed117c11d5b37d0050dadef62b/content.htm

Step by Step Tutorials

http://www.saptechnical.com/Tutorials/ExitsBADIs/ExitsMain.htm

Business add-ins are enhancements to the standard version of the system.

Business Add-In is a new SAP enhancement technique based on ABAP Objects.

They can be inserted into the SAP system based on specific user requirements.

Each Business Add-In has:

u2022 at least one Business Add-In definition

u2022 a Business Add-In interface

u2022 a Business Add-In class that implements the interface

In order to enhance a program, a Business Add-In must first be defined

Subsequently two classes are automatically generated:

u2022 An interface with u2018IF_EX_u2019 inserted between the first and second characters of the BADI name.

u2022 An adapter class with u2018CL_EX_u2019 inserted between the first and second characters of the BADI name.

The Application developer creates an interface for this Add-In.

There are multiple ways of searching for BADI.

u2022 Finding BADI Using CL_EXITHANDLER=>GET_INSTANCE

u2022 Finding BADI Using SQL Trace (TCODE-ST05).

u2022 Finding BADI Using Repository Information System (TCODE- SE84).

1. Go to the Transaction, for which we want to find the BADI, take the example of Transaction VD02. Click on System->Status. Double click on the program name. Once inside the program search for u2018CL_EXITHANDLER=>GET_INSTANCEu2019.

Make sure the radio button u201CIn main programu201D is checked. A list of all the programs with call to the BADIu2019s will be listed.

The export parameter u2018EXIT_NAMEu2019 for the method GET_INSTANCE of class CL_EXITHANDLER will have the user exit assigned to it. The changing parameter u2018INSTANCEu2019 will have the interface assigned to it. Double click on the method to enter the source code.Definition of Instance would give you the Interface name.

2. Start transaction ST05 (Performance Analysis).

Set flag field "Buffer trace"

Remark: We need to trace also the buffer calls, because BADI database tables are buffered. (Especially view V_EXT_IMP and V_EXT_ACT)

Push the button "Activate Trace". Start transaction VA02 in a new GUI session. Go back to the Performance trace session.

Push the button "Deactivate Trace".

Push the button "Display Trace".

The popup screen "Set Restrictions for Displaying Trace" appears.

Now, filter the trace on Objects:

u2022 V_EXT_IMP

u2022 V_EXT_ACT

Push button "Multiple selections" button behind field Objects

Fill: V_EXT_IMP and V_EXT_ACT

All the interface class names of view V_EXT_IMP start with IF_EX_. This is the standard SAP prefix for BADI class interfaces. The BADI name is after the IF_EX_.

So the BADI name of IF_EX_CUSTOMER_ADD_DATA is CUSTOMER_ADD_DATA

3. Go to u201CMaintain Transactionu201D (TCODE- SE93).

Enter the Transaction VD02 for which you want to find BADI.

Click on the Display push buttons.

Get the Package Name. (Package VS in this case)

Go to TCode: SE84->Enhancements->Business Add-inns->Definition

Enter the Package Name and Execute.

Best regards,

raam