‎2007 Apr 17 3:19 PM
When we Debug a report and if there is a Function module in some location( For Ex 300 line)so if i want 2 c the function module directly how can i c it
‎2007 Apr 17 3:24 PM
If you want to see the code of the function module being processed, put a break point just before the call to the function module. Then use the button for going a single step in the debugger (button all the way to the left) to step into the function module itself. If this isn't working, make sure that you have system debugging turned on (from within the debugger, choose "Settings" then "System Debugging On/Off").
- April King
‎2007 Apr 17 3:21 PM
You can use....<b>BREAK-POINT --> SENTENCE</b> and put CALL FUNCTION...
Execution will stop on every CALL FUNCTION call...
Greetings,
Blag.
‎2007 Apr 17 3:22 PM
Hi balu,
You need to set the breakpoint using the menu:
Breakpoints->Breakpoint at->Function MOdule.
GIve the name of the FM in the pop up to follow.
Then press f8.
Regards,
Ravi
‎2007 Apr 17 3:22 PM
Balu,
Before you execute the program put a break point at the function module and execute it....Then the cursor will stop at FM.
‎2007 Apr 17 3:22 PM
You have to go though the code to find out the FM, if u knew the FM name then u can set a break point and press F8.
‎2007 Apr 17 3:23 PM
from the meu options in debugging mode... create a break-point/watch-point and specify the function module name... when ever the function module is triggered the cursor stops at the function module.
‎2007 Apr 17 3:24 PM
If you want to see the code of the function module being processed, put a break point just before the call to the function module. Then use the button for going a single step in the debugger (button all the way to the left) to step into the function module itself. If this isn't working, make sure that you have system debugging turned on (from within the debugger, choose "Settings" then "System Debugging On/Off").
- April King