hi
i have 5 records in itab_del internal table after the endloop.
now i have to delete the ztable records that is matching with itab_del table and for that i have written following code after endloop.
ITAB_DEL = ITAB_DEL3.
append ITAB_DEL.
clear ITAB_DEL.
endloop.
DELETE Ztable FROM table ITAB_DEL.
but ztable records are not deleting although 5 records are matching.
is my syntax wrong ? what is the issue ???
pl help.
thanx in advance
rocky