Quantcast
Channel: SCN: Message List - SAP CRM: Webclient UI - Framework
Viewing all articles
Browse latest Browse all 7775

Re: How to check the change made in a transaction

$
0
0

You can check which Badi is being called when you press enter. Just follow the below given steps:

keep a break point in badi implementation and run the tcode.
it automatically trigger ur badi implementation

how to find badi in debug mode :

1. Open the class CL_EXITHANDLER in transaction se24.
2. In the class open the method GET_INSTANCE by double clicking on it.
3. In the method set a breakpoint in the statement CALL METHOD cl_exithandler=>get_class_name_by_interface

After doing the above steps execute the transaction for which you need to know the BAdIs. When the application stops at the breakpoint check the value in the CHANGING parameter EXIT_NAME in the debugger. This will contain the BAdI name.

The advantage with this way of searching for the BAdI is that you get to know at which point in time of the application the BAdI is called and how many times the BAdI is called. You can also find out BAdI at certain events, say, when you save or press enter in the transaction.


Hope it will help.

 

Thanks

Kumar Gaurav


Viewing all articles
Browse latest Browse all 7775

Trending Articles