I have an internal table in which I have to move line items based on value on 3 variables using the value operator.
types:
ty_table type standard table of string with default key.
Data(Lv_var_1) = 'LINE 1'.
Data(Lv_var_2) = 'LINE 2'.
Data(Lv_var_3) = ''.
data(lt_table) = value ty_table( ( cond #( WHEN lv_var_1 is not initial THEN lv_var_1 ) )
( cond #( WHEN lv_var_2 is not initial THEN lv_var_2 ) )
( cond #( WHEN lv_var_3 is not initial THEN lv_var_3 ) ) ).
Here lv_var_3 is empty. For me when any variable is empty, it shouldn't even create a row in the lt_table.
How can I achieve this?
The direct answer to your question is to use
LINES OF
so that to append an arbitrary number of lines from an intermediate internal table, which can be potentially empty (0 line added) or not (any number of lines, in your case 1 line):But you may realize that the code is not legible, other codes are possible like adding all the lines then deleting the initial lines:
Or the same principle but less legible with constructor expressions:
Or another possibility like the first one, but without repeating the variable names: