‎2009 Feb 18 2:55 AM
Hi,
I would like to set the break point for all users while executing the program
Note:i dont want to add code in program.
‎2009 Feb 18 3:01 AM
Hi Nachy,
Without coding, I think it is not possible.
Regards,
Prabhu
‎2009 Feb 18 3:01 AM
Hi Nachy,
Without coding, I think it is not possible.
Regards,
Prabhu
‎2009 Feb 18 3:01 AM
Hi,
I think that this is not possible. Only static break points are not user-specific. You can create static break point using only ABAP statement BREAK-POINT.
Cheers
‎2009 Feb 18 3:08 AM
HI Nachy,
Break point can also be hard coded in the program Syntax BREAK-POINT, such breakpoints work across users. By using a breakpoint once you enter the debugger then the program can be examined in detail for removing the bugs.
Thanks
Kalyan
‎2009 Feb 18 3:34 AM
You can set a static brkpoint to achieve this
To set a static breakpoint, use the ABAP statement BREAK-POINT . Place the breakpoint in the line at which you want to interrupt the program.
program RSDEBUG_01.
if SY-SUBRC <> 0.
break-point.
endif.
....
When you run the program, the runtime processor interrupts it when the breakpoints occur. You can number your breakpoints to make them easier to identify ( BREAK-POINT 1, BREAK-POINT 2 u2026).
Static breakpoints are 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.
However, you can set user-specific static breakpoints using the BREAK statement followed by your user name. For example, if you use the statement BREAK SMITH , the program is only interrupted when user Smith runs it. Although user-specific breakpoints appear in the program code, they are not active when other users run the program. You should, however, be careful if an application is being used by several users with the same name
‎2009 Feb 18 3:42 AM
Hi,
You can use BREAK-POINT [ID group].
You need to create the group ID first using transaction SAAB.
The advantage of using this breakpoint is that, you can deactivate it from SAAB. You can also set the breakpoint for specific or all users.
Regards,
Lim...
‎2009 Feb 18 5:24 AM
You can satisfy your requirement by hard coding the break point.
break-point.