2007 Aug 28 11:26 AM
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??
2007 Aug 28 11:29 AM
hi
use the delete statement
delete from dbase where cond.
keep the condition on key fields
regards
sandhya
2007 Aug 28 11:30 AM
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
2007 Aug 28 11:41 AM
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
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |