2007 May 31 1:52 PM
can any one tell me how to delete entries from a database table from 30 to 80 entries i need to delete.
can any one tell me how to delete entries from a database table from 30 to 80 entries i need to delete.
2007 May 31 1:54 PM
go to SM30 fill in the table name , select the rows, delete them and save
ofcourse you are talking about Ztables right ?
and if SM30 is not working you first have to maintain that in the table with SE11
Message was edited by:
A. de Smidt
Message was edited by:
A. de Smidt
2007 May 31 1:56 PM
2007 May 31 1:56 PM
go to transaction se16n
entry your DBtable.
then type &sap_edit.
now you are able to delete the rows that you want.
reward with points if its helpful.
2007 May 31 1:57 PM
You can write a code in SE38. just declare the table and user delete from statement.
If the delete is not locked by user authorization you can delete the rows you want to delete.
2007 May 31 2:39 PM
Hi..
You can follow this also :
DELETE FROM 'database' WHERE field1 = 'x' AND
field2 = 'y' AND
field3 = 'z' .
In this way records satisfying ur Condition will be deleted .
Praveen .
2007 May 31 2:51 PM
hi
If you just want to delete 30 to 80 the rows from a program
use
<b>DELETE from <ZTABLE> where <CONDITION>.
modify ZTABLE</b>
regards
ravish
<b>plz dont forget to reward points if helpful</b>
2007 May 31 5:44 PM
this code will definitely work.....
first move the data from database to an internal table upto 80 rows.
select * from <dbtab> upto 80 rows into table itab1.
insert lines of itab1 from 30 into itab2.
delete <dbtab> from table itab2.
enddo.
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |