Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Delete Data recover

Former Member
0 Kudos

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.

4 REPLIES 4

former_member598013
Active Contributor
0 Kudos

Hi Hari,

Below code might help you.


Loop at itab.
delete itab index sy-tabix.
endif.

Thanks,

Chidanand

Former Member
0 Kudos

Hi,

itab Row Delete , that row used other place.

plz, explain.

by,

0 Kudos

declare a new int table for deleted data and append that table with the rows you are deleting from main table.

Regards

Sathar

former_member182426
Active Contributor
0 Kudos

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.