hi,
Loop (internal table2 which has many records)
read each record coming inside the loop for the condition to satisfy in the other internal table1
if sy-subrc = 0.
delete the content of the internal table1 .
endif.
endloop.
regards,
karthik
Hi,
Do like this.
Loop at itab1 itno wa1.
read tbale itab2 into wa2 with key <conditions>
if sy-subrc eq 0 .
delete itab1 from wa1.
endif.
endloop.
Regards,
Prashant
Add a comment