This valid code leads to abapOpenChecks boolean parser error:
report y_test.
class lcl_program definition final.
public section.
methods:
main.
endclass.
class lcl_program implementation.
method main.
if me is not instance of lcl_program.
write: / 'NOK'.
else.
write: / 'OK'.
endif.
endmethod.
endclass.
start-of-selection.
new lcl_program( )->main( ).
The problem is the is not instance of.
If I use is instance of, there is no error.
This valid code leads to
abapOpenChecks boolean parser error
:The problem is the
is not instance of
. If I useis instance of
, there is no error.