Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

break-point

Former Member
0 Likes
761

what is the use of the break-point command.

thanks.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
734

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.

7 REPLIES 7
Read only

Former Member
0 Likes
734

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

Read only

0 Likes
734

the break-point is coded in the program? is this the same with /h command?

Read only

0 Likes
734

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

Read only

0 Likes
734

if you need a user specific break point you can use

break <userid> .

Regards

Raja

Read only

athavanraja
Active Contributor
0 Likes
734

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

Read only

Former Member
0 Likes
734

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

Read only

Former Member
0 Likes
735

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.