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 statement

Former Member
0 Likes
2,644

Can someone help to tell me what's the meaning of below statement?

BREAK xxxxx.

xxxxx is an user-id.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,659

this is a break point with user specified activation.

means pout this statement in ths code and for the user xxxxx it will behave like a break point, for all other users it will just be skipped.

5 REPLIES 5
Read only

Former Member
0 Likes
1,660

this is a break point with user specified activation.

means pout this statement in ths code and for the user xxxxx it will behave like a break point, for all other users it will just be skipped.

Read only

Former Member
0 Likes
1,659

BREAK, followed by a user name, is not a statement, but a predefined macro.

Read only

Former Member
0 Likes
1,659

Hi,

BREAK USER-ID mean the break point is goin to trigger for that particular user only(i.e the transactions that run through the Given ID will trigger the break point.

Break points are two types :

1 Dynamic Break point

2.static break point.

dynamic break point means - /h or click on stop button

Static break point - writing the command like break user id.

you can set up 30 break point for each program..

Sometimes data is coming wrong and you need find out programtically and to see th code it is some what hectic.

you know what values getting wrong so you keep break point some where in the program and you will work in the debugging.

keep on chnaging debugging values and you will get results related to functional issues.

Regards,

Raj.

Read only

Former Member
0 Likes
1,659

hi,

Here BREAK is a macro .... BREAK POINT is set with BREAK-POINT statement.

Regards,

Santsoh

Read only

Former Member
0 Likes
1,659

Thank you all.Your answers really help.