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

breakpoint

Former Member
0 Likes
513

1.What is watchpoint?

What's the difference between watchpoint and breakpoint?

2.How many breakpoint we can set at max.?

3 REPLIES 3
Read only

Former Member
0 Likes
483

1)BREAKPOINT

In the source code we set the Break-point there by clicking the stop button, the system will stop there when you execute the program.

Watchpoint

http://help.sap.com/saphelp_nw04/helpdata/en/c6/617cdce68c11d2b2ab080009b43351/content.htm

Read only

Former Member
0 Likes
483

Hi Watch Point is nothing but for Suppose if u want to check the how the value of a particular field is changing then we do it using watch point. Means if "x = 10" Then u want to Check at 500 How What is X Then u can see Watch point at 500 So that from 10 it directly read the value of X at 500. And break point is the thing we can see the flow of the program. MAx. we can set 30 break points .

Bye

Murthy

Read only

anversha_s
Active Contributor
0 Likes
483

HI siva,

BREAKPOINT

In the source code we set the Break-point there by clicking the stop button, the system will stop there when you execute the program.

Watchpoint

For watchpoints, we need to give some condition and when this condition is satisfied, program will stop

example : if you want to debug only

for matnr value 100 than set watch point

matnr = 100. when value reaches 100 than

program stops at that point.

more at

http://help.sap.com/saphelp_nw04/helpdata/en/c6/617cdce68c11d2b2ab080009b43351/content.htm

Reagrds

Anver

if hlped pls mark points