‎2008 Oct 14 11:37 AM
Hi,
Select query used to data all read in itab, particular data i have delete itab. but next stage that data i wanted .
what is a procedure , plz, explain.
By,
harihara lingam.
‎2008 Oct 14 11:39 AM
Hi Hari,
Below code might help you.
Loop at itab.
delete itab index sy-tabix.
endif.
Thanks,
Chidanand
‎2008 Oct 14 11:44 AM
Hi,
itab Row Delete , that row used other place.
plz, explain.
by,
‎2008 Oct 14 11:46 AM
declare a new int table for deleted data and append that table with the rows you are deleting from main table.
Regards
Sathar
‎2008 Oct 14 12:12 PM
hi,
use Rollback statement if it is direct database table....
if it is itab of ur local program then use one temparay itab which ever u delted from itab before delete statement use
append itab to temp_itab.
delete itab index....
Regards,
shankar.