‎2008 May 14 8:49 AM
Can someone help to tell me what's the meaning of below statement?
BREAK xxxxx.
xxxxx is an user-id.
‎2008 May 14 8:51 AM
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.
‎2008 May 14 8:51 AM
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.
‎2008 May 14 8:53 AM
BREAK, followed by a user name, is not a statement, but a predefined macro.
‎2008 May 14 8:55 AM
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.
‎2008 May 14 8:56 AM
hi,
Here BREAK is a macro .... BREAK POINT is set with BREAK-POINT statement.
Regards,
Santsoh
‎2008 May 14 9:04 AM