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
528

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

Former Member
0 Likes
498

Hi,

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

Thanks,

Nitesh Jain

Read only

Former Member
0 Likes
498

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,

Read only

Former Member
0 Likes
498

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.