‎2011 Feb 20 4:59 PM
hello experts,
I have list of exits/Badi/enhancements; I want to find transaction code which is calling those exits. is there any easy way to find it?
I have less time in hand and long list for cmod projects, Badi implementation & Enhancement-spot implementation. I dont want to check each transaction by putting breakpoint in code, to find which exit that program is calling. I want to go reverse.
please help me if you have an way to search.
-Shweta
‎2011 Feb 20 10:48 PM
Hello Shweta
One place you should visit is: [ABAP Ninja|http://www.abapninja.org]
Regards
Uwe
‎2011 Feb 21 4:10 PM
Hi
In most of the cases you can find trasaction codes through the package to which BADI (or Exit) is assigned.
~~~Ganesh Kumar K.
‎2011 Feb 21 7:01 PM
From package we could not find exact transaction which calls that particular badi. In most of the cases there will be so many transactions under one package, it is bit difficult and time consuming task to know.
is there any other alternative? something like I can get list of all transactions with available exits so i can find it from there.
Help is appreciated.
‎2011 Feb 21 7:11 PM
You could try creating a ztable and populating it with the tcodes the badi/enhancement is called from during runtime,
‎2011 Mar 16 9:32 PM
Check out table ENHOBJ to get the program (or FUGR) that has the enhancement. to get the transaction - use SE80.
‎2011 Mar 17 4:31 AM
check table T180M ...There is link for function exit and program names
‎2011 Mar 17 4:41 AM