Hi Selimi,
Create another internal table of same type, before calling ALV copy the data to this internal table.
Once you finished the modification through ALV, compare both internal table, like..
loop itab1 into wa1.
read itab2 into wa2 index sy-tabix.
if wa1 <> wa2.
append wa2 to itab3.
endif.
endloop.