Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

User-specific ABAP breakpoint acts weird

Why the statement

BREAK-POINT 'my username'.  

affects not only me but other users too? Am I insane? Maybe this is a problem of permissions or any other reason? Can anybody explain me?

This statement is located in method body in class which implements BAdI.

like image 317
Suncatcher Avatar asked Oct 02 '12 08:10

Suncatcher


People also ask

What is the statement for creating a user independent breakpoint in SAP ABAP?

A user-specific breakpoint is inserted in the source code as an ABAP statement using the keyword BREAK-POINT. A non user-specific breakpoint is set in the ABAP Editor using the BREAK user name statement.

What can happen if you do not delete the static breakpoint manually in the development system?

If you do not remove static breakpoints from your program, they will be transported to your production system. This could cause serious problems in the production system.


1 Answers

If you want to use break points only for your username, you have to use it like this:

BREAK username.

If you use

BREAK-POINT.

it is going to affect everyone.

The actual meaning of BREAK-POINT 'my username'. is completely different (comment from vwegert):

See the documentation of BREAK-POINT - you've been using your user name as a log text

like image 122
Mtu Avatar answered Sep 30 '22 14:09

Mtu