‎2007 Aug 24 1:44 AM
Hi folks,
i want to debug a include ' LVEDFF0E.' which is present in the program 'SAPLVEDF.
my user exit 'ZXEDFU02' is present in the include LVEDFF0E . This exit is to change the IDOC segmants.
i want to debug my user exit which is present inside a include.i tried so many times but control is not going to that point.
can anybody tell me how to debug that exit???
correct answers will be rewarded.
Thanks & Regards
‎2007 Aug 24 1:51 AM
Try to put the debuggers at different levels above the include. Put one debugger in the main program and then the function module and finally in the exit.
So that you can go step by step into the actual logic.
-Kriss
‎2007 Aug 24 1:51 AM
Try to put the debuggers at different levels above the include. Put one debugger in the main program and then the function module and finally in the exit.
So that you can go step by step into the actual logic.
-Kriss
‎2007 Aug 24 2:15 AM
Hi,
Try this way
/h> choose "breakpoints" from menu> breakpoint at >function module> enter EXIT_SAPLVEDF_002 and press enter press f8
a®
‎2007 Aug 24 2:17 AM
User exits are all called through logic that checks if the exit is active before executing it.
So if you have not created a CMOD project for the exit and activated it the include will never be called. Neither will the EXIT_... function module .
Andrew