‎2008 Jan 24 5:41 AM
‎2008 Jan 24 5:53 AM
u can set debugging by going to breakpoints and setting breakpoint at
the statemnet u want to debug
u can also take help of the keys f5 f6 f7
adn f8 goes from one BP to other BP
‎2008 Jan 24 5:45 AM
Hi Rohan ,
Set the breakpoint in that particular line of the code. Then when you execute ( with or without debugging mode ) automatically , you will reach there.
Watch point can also be used , if you want to see how a particular value works .
Reward if useful,
Regards,
Chitra
‎2008 Jan 24 5:45 AM
Hi,
You can use a Watchpoint which enables you to reach a state wherein the variable specified in the watch point attains a given value.
Or you can use the menu "Breakpoints" in the debugger to put a breakpoint at a statement, subroutine, FM, method etc.
‎2008 Jan 24 5:47 AM
Hi,
First u need to put a break on the statement from which u want to start debugging...
after that press f5 f6 or f7 as per requirement....
Regards,
Sandeep
‎2008 Jan 24 5:47 AM
1)PUT a break-point (shiftctriF12) i that line of program in se38
2)In debugger create break-point/watch points...
‎2008 Jan 24 5:50 AM
Hi
For the debugging, pls follow these links :-
Refer to this thread
http://help.sap.com/saphelp_47x200/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm
Check these documents.
http://www.cba.nau.edu/haney-j/CIS497/Assignments/Debugging.doc
http://help.sap.com/saphelp_nw04/helpdata/en/5a/4ed93f130f9215e10000000a155106/frameset.htm
http://help.sap.com/saphelp_47x200/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm
http://www.cba.nau.edu/haney-j/CIS497/Assignments/Debugging.doc
http://help.sap.com/saphelp_erp2005/helpdata/en/b3/d322540c3beb4ba53795784eebb680/frameset.htm
http://help.sap.com/saphelp_nw04/helpdata/en/84/1f624f4505144199e3d570cf7a9225/frameset.htm
http://help.sap.com/saphelp_bw30b/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm
http://help.sap.com/saphelp_erp2005/helpdata/en/b3/d322540c3beb4ba53795784eebb680/frameset.htm
http://www.saplinks.net/index.php?option=com_content&task=view&id=24&Itemid=34
Look at the SAP help link below
http://help.sap.com/saphelp_nw2004s/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm
reward if help.
‎2008 Jan 24 5:52 AM
Hi Rohan
First select the drop down in the ABAP editor.
Then execute it and then press F5. You will be reached to the selected breakpt.
Reward if help.
‎2008 Jan 24 5:53 AM
u can set debugging by going to breakpoints and setting breakpoint at
the statemnet u want to debug
u can also take help of the keys f5 f6 f7
adn f8 goes from one BP to other BP
‎2008 Jan 24 5:54 AM
hi!
first set a break point at that particular line of code and then by pressing F7, u can go through....
‎2008 Jan 24 5:54 AM
1. Once the program is activated, go to the line where you want the break-point and go to UTILITIES -> BREAKPOINTS ->SET and then execute the program. Program will stop at the point where you have set the break point.
2. Press /h and go to the debugging mode Goto Breakpoint ->Breakpoint at ->
3. Press /h and in debugging mode, scroll down to tthe line, where you require break-point and double click at that point, it will set the break-point at that line. When you hit F8, iut will stop at the point where you have set the break-point.
4. create a watch-point in the debuggig mode and the set the value of the variable where you want the code should stop.