Helo Experts,
Plz tell what is the problem in my code.Data is not coming in internal talbe it_error, even on the correct condition
loop at record.
if record-BUKRS_001 = 'XYZ' and record-EKORG_002 ne '2000' .
if sy-subrc eq 0.
MOVE-CORRESPONDING record TO it_error.
APPEND record TO it_error.
endif.
endif.
endloop.
Ravi