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,

itab all data store , particular one field delete . that field is another place used , how is possible.

plz, explain.

by,

Harihara lingam.S

3 REPLIES 3

Former Member
0 Kudos

Hi,

Can you please explain your question. I am not able to get it.

Thanks,

Nitesh Jain

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,

Former Member
0 Kudos

Hi,

Do you mean you want to delete only a single field contents and rest of them should be available. If yes then check sample code:

tables:
vbak.

field-symbols:
<fs> type vbak.

data:
itab type standard table of vbak with header line.

<populate itab values>.

loop at itab into <fs>.
 clear <fs>-fieldname.
endloop.

This above code will clear only specified fields, it will not affect other fields.

Thanks & Regards,

Navneeth K.