‎2006 Sep 22 10:45 AM
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
‎2006 Sep 22 10:47 AM
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
‎2006 Sep 22 10:47 AM
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
‎2006 Sep 22 10:54 AM
‎2006 Sep 22 12:01 PM
‎2006 Sep 22 2:10 PM
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,