A BREAK-POINT
statement is used when debugging an application with help of the ABAP Debugger. But such debugging statements could make
an application vulnerable to attackers, and should not be left in the source code.
Noncompliant code example
IF wv_parallel EQ 'X'.
BREAK-POINT.
WAIT UNTIL g_nb_return EQ wv_nb_call.
ENDIF.
Compliant solution
IF wv_parallel EQ 'X'.
WAIT UNTIL g_nb_return EQ wv_nb_call.
ENDIF.