CHECK_34 - Large WHEN construct
Improve this pageRFC enabled
CODE
Large number of lines within WHEN construct, refactor code
CASE lv_foo.
WHEN 'BAAR'
...
code
...
ENDCASE.
can be transformed to the following, it will become easier to get an overview of the CASE
CASE lv_foo.
WHEN 'BAAR'
PERFORM foobar.
ENDCASE.
FORM foobar.
...
code
...
ENDFORM.