I coded the following line of code
DATA(lt_heads_ok) = VALUE my_head_table( for wa IN g_heads
LET ok = g_model->is_head_ok( wa-id )
IN ( COND #( WHEN ok = abap_true THEN wa ) ) ).
I can activate it but the results seems weird to me. Indeed I get all the lines but empties are none of them are valid according to my conditions.
Is there a way to avoid to append an empty line when it does not match the "COND" condition ?
Adding lines conditionally in a FOR iteration can be done in two ways. Note that the same question arises even if
LET
is not used.The first way is to use
LINES OF
:The second way is to use
REDUCE
: