Open
Description
Hello,
Are LINE_EXISTS suggestions correct for non-EQ search keys in READ or LOOP?
As far as I know, I can only specify keys in LINE_EXISTS() via EQ
Regards,
Günter
Example:
clear r_yes.
loop at gritab transporting no fields where ico_towork = abap_true
and ico_created <> zcl_zhplm_utils=>c_ico_created_complete.
r_yes = abap_true.
exit.
endloop.