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

user-exits

Former Member
0 Likes
506

i am new to enhancements i got a reqrement to add field in the t.code i do not wht is the procedure please tell me the flow how to add a field in a sap stand tranation

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
480

Hello,

I would suggest you to go for BADI.

Follow the below steps to find out what all BADI's are called when you press any button in any transaction.

1) Goto se24 (Display class cl_exithandler)

2) Double click on the method GET_INSTANCE.

3) Put a break point at Line no.25 (CASE sy-subrc).

Now

4) Execute SAP standard transaction

5) Press the required button for which you need to write an exit logic, the execution will stop at the break point.

6) Check the values of variable 'exit_name', it will give you the BADI name called at that time.

7) This way you will find all the BADIs called on click of any button in any transaction.

For more information about BADI, let me know your email ID, will fwd u a document.

Regs,

Venkat Ramanan N

4 REPLIES 4
Read only

Former Member
0 Likes
481

Hello,

I would suggest you to go for BADI.

Follow the below steps to find out what all BADI's are called when you press any button in any transaction.

1) Goto se24 (Display class cl_exithandler)

2) Double click on the method GET_INSTANCE.

3) Put a break point at Line no.25 (CASE sy-subrc).

Now

4) Execute SAP standard transaction

5) Press the required button for which you need to write an exit logic, the execution will stop at the break point.

6) Check the values of variable 'exit_name', it will give you the BADI name called at that time.

7) This way you will find all the BADIs called on click of any button in any transaction.

For more information about BADI, let me know your email ID, will fwd u a document.

Regs,

Venkat Ramanan N

Read only

Former Member
0 Likes
480

hi Sunil,

Welcome to SDN ..

Have a look at the below thread

Regards,

Santosh

Read only

Former Member
0 Likes
480

Hello,

If problem is solved, close the thread.

Regs,

Venkat

Read only

Former Member
0 Likes
480

If you want to find any user exit for a transaction, find the package of the transaction.

se93->transaction->GOTO menu->Object directory entry.

Here find the package

smod->F4 Help on enhancement->check the exits based on the identified package for that transaction.

A list of exit names will be appear with respect to those package if available.

Regards,