‎2005 Aug 30 5:56 AM
‎2005 Aug 30 6:16 AM
Hi,
Have a look at this link,
http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/break_po.htm
U can also use BREAK login id.
This will work similar to BREAK-POINT.
Using /h is before u do F8 in the selection screen enter /h and then F8 then u can debug step by step from the starting.
Or if u want to debug from a particular point u can use <b>BREAK-POINT or BREAK login id.</b>
Also u can place the cursor in the line where u want to break an select the <b>STOP button</b> in the toolbar.
This will also work similar to others but without hard coding.
Also refer this link
http://www.sapdevelopment.co.uk/tips/debug/debug_backjob.htm
Hope this helps.
‎2005 Aug 30 6:03 AM
Hi,
Break-Point Command is used for Debugging ur report program.
u can debug using /H command or u can set break-point inside ur program.
Thanks.
Ruthra.R
‎2005 Aug 30 6:04 AM
the break-point is coded in the program? is this the same with /h command?
‎2005 Aug 30 6:07 AM
Hi Donna,
It will be coded in the program. they are called the static break point. It is not normally user specific.The program is, therefore, always interrupted as soon as the runtime processor reaches the line containing the breakpoint. The program is interrupted regardless of the user who executes it.
With Regards,
Ranganathan
‎2005 Aug 30 6:08 AM
if you need a user specific break point you can use
break <userid> .
Regards
Raja
‎2005 Aug 30 6:04 AM
when executing a program the program would at the place where break-point statement is there in debugg mode so that you can check manually whether the desired operations are happenning.
Its for development support .
for more info check out the abap key word documentation.
and
http://help.sap.com/saphelp_nw04/helpdata/en/c6/617cbee68c11d2b2ab080009b43351/content.htm
Regards
Raja
‎2005 Aug 30 6:16 AM
Hi Donna,
Break-point puts an unconditional break point in the program. But if you use the "ID" extension of this command, then you can use Txn. SAAB for externally activating or deactivating these break-points.
Cheers,
Sanjeev
‎2005 Aug 30 6:16 AM
Hi,
Have a look at this link,
http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/break_po.htm
U can also use BREAK login id.
This will work similar to BREAK-POINT.
Using /h is before u do F8 in the selection screen enter /h and then F8 then u can debug step by step from the starting.
Or if u want to debug from a particular point u can use <b>BREAK-POINT or BREAK login id.</b>
Also u can place the cursor in the line where u want to break an select the <b>STOP button</b> in the toolbar.
This will also work similar to others but without hard coding.
Also refer this link
http://www.sapdevelopment.co.uk/tips/debug/debug_backjob.htm
Hope this helps.