loop at itab into wa.
read table itab_del into wa_del with key field = wa-field.
If sy-subrc = 0.
delete itab_del.
endif.
endloop.
↧
Re: How to delete rows from an itab from another Itab
↧
loop at itab into wa.
read table itab_del into wa_del with key field = wa-field.
If sy-subrc = 0.
delete itab_del.
endif.
endloop.