hi
1. first copy the itab to another itab
itab2[] = itab1[]
2. loop at itab1 into wa_tab1.
read table itab2 into wa_tab2 with key f2 = wa_tab1-f1.
if sy-subrc = 0.
delete itab1 index sy-tabix
endif.
clear wa_tab1.
endloop.
hope it will work
suresh
hi
1. first copy the itab to another itab
itab2[] = itab1[]
2. loop at itab1 into wa_tab1.
read table itab2 into wa_tab2 with key f2 = wa_tab1-f1.
if sy-subrc = 0.
delete itab1 index sy-tabix
endif.
clear wa_tab1.
endloop.
hope it will work
suresh