Application Development and Automation 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: 
Read only

Delete Data recover

Former Member
0 Likes
591

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
Read only

Former Member
0 Likes
565

Hi Hari,

Below code might help you.


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

Thanks,

Chidanand

Read only

Former Member
0 Likes
565

Hi,

itab Row Delete , that row used other place.

plz, explain.

by,

Read only

0 Likes
565

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

Regards

Sathar

Read only

Former Member
0 Likes
565

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.