Quantcast
Viewing all articles
Browse latest Browse all 2794

Re: How to delete rows from an itab from another Itab

sort itab by field.

sort itab_del by field.

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.


Viewing all articles
Browse latest Browse all 2794

Trending Articles