‎2008 Jun 13 7:55 AM
‎2008 Jun 13 7:56 AM
Put a break point in your exit.
Run the transaction that will trigger your exit.
Thanks,
Victor.
‎2008 Jun 13 7:56 AM
‎2008 Jun 13 7:57 AM
Hi,
Place a static break-point in that exit.Then run the transaction.It will start the debugger when the exit gets fired.
‎2008 Jun 13 7:59 AM
Hi Saranya,
Never ever use break-point in general, always be specific when you want to debug a exit. Use the following syntax :
BREAK <USERID>
Hope this is helpful to you. If you need further information, revert back.
Reward all the helpful answers.
Regards
Nagaraj T
‎2008 Jun 13 8:03 AM
Hi,
write static breakpoint using BREAK USERID avoid using BREAK-POINT that might cause some problems.
Then execute ur transaction.
Rgds.,
subash
‎2008 Jun 13 8:28 AM
Write BREAK USERID or BREAK-POINT at the first line of the include program.
‎2008 Jun 13 8:32 AM
saranya srithar,
Write STOP where you want to debug.
than run the t-code it will trigger and stop at here.
Amit.
‎2008 Jun 13 8:47 AM