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 the uploaded record

Former Member
0 Likes
432

I uploaded some records thru BDC(any Method) . Now that i want to delete that particular uploaded record from the database . How can i do that??

I uploaded some records thru BDC(any Method) . Now that i want to delete that particular uploaded record from the database . How can i do that??

3 REPLIES 3
Read only

Former Member
0 Likes
412

hi

use the delete statement

delete from dbase where cond.

keep the condition on key fields

regards

sandhya

Read only

Former Member
0 Likes
412

hi,

for which transaction u uploaded the records ? check with the functional consultant he might be able to tell u wether there is any other transaction which can reverse the records.

rgds.

reward points if it helps

Read only

Former Member
0 Likes
412

Hi,

If you have the records in an internal table, use the following command.

DELETE ztable FROM TABLE itab.

If you have the records in a Work Area, use the following command.

DELETE ztable FROM wa.

Or

You can directly delete the records if you know the keys:

DELETE FROM ztable WHERE 'condition'.

Award Points if useful.

Thanks, Ankur