‎2007 Jul 23 7:09 PM
Hi,
How can I delete all lines from my custom table in Dev System.
Thanks,
Neelu.
‎2007 Jul 23 7:10 PM
HI,
If you have many records.. write small program like this
data: itab like standard table of ztable.
select * from ztable into itab.
delete ztable from table itab.
Thanks
mahesh
‎2007 Jul 23 7:10 PM
HI,
If you have many records.. write small program like this
data: itab like standard table of ztable.
select * from ztable into itab.
delete ztable from table itab.
Thanks
mahesh
‎2007 Jul 23 7:13 PM
It will be good if u create table maintenance for creating new entries and deleting and modifying existing ones...
Regards
Prax
‎2007 Jul 23 7:17 PM
hi,
do this way ..
select * from ztable into it_ztable.
if sy-subrc = 0.
delete ztable from table it_ztable.
endif.
‎2007 Jul 23 7:19 PM
Hi,
You can use transaction SE14 to delete all records of custom table.
Regards,
Ferry Lianto
‎2007 Jul 23 7:37 PM
‎2007 Jul 23 7:46 PM
Hi,
Goto SE14, on the second screen, mark 'DELETE DATA' option, click on "Activate and Adjust Database" and finish, your table is cleaned !!
Regards,
Marcelo Ramos.