I am using the line_index function and would like to search for two values, not only for ‘carrid’ but also for ‘connid’. If it is possible? If so, in what way? Because right now after adding the code in the red box, I get a syntax error LT[ ] is not an internal table.
lv_index = line_index( lt[ carrid = 'LH' ][ connid = '2407' ] ).
>Solution :
All fields (conditions) just one after the other inside one bracket:
lv_index = line_index( lt[ carrid = 'LH'
connid = '2407' ] ).
