abapOpenChecks icon indicating copy to clipboard operation
abapOpenChecks copied to clipboard

IS INITIAL for abap_bool and tables

Open larshp opened this issue 7 years ago • 0 comments

IF lv_flag IS INITIAL.
IF lv_flag IS NOT INITIAL.
* ->
IF lv_flag = abap_false.
IF lv_flag = abap_true.

IF lt_table IS INITIAL.
IF lt_table IS NOT INITIAL.
* ->
IF lines( lt_table ) = 0.
IF lines( lt_table ) > 0.
*assuming there is no header line

larshp avatar Nov 01 '18 10:11 larshp