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 transparent table

Former Member
0 Likes
2,443

hi,

I can't find a way to delete the content of a table via standard sap programs.

What's the simplest way to do this?

Must I write an report (...delete dbtab...)?

Thanks

Michael

5 REPLIES 5
Read only

Former Member
0 Likes
1,216

Hi,

You can write a Z program to delete the data from the table.

Regards,

Sangeetha.A

Read only

Former Member
0 Likes
1,216

Hello,

U can delete the contents by goto

SE11

Take the table contents

Main Menu -> TABLE ENTRY

Delete entries

Reward if helpful,

Regards,

LIJO

Read only

Former Member
0 Likes
1,216

Hi,

use the command DELETE<table>.

this will delete all the contents in the db table.

<b>example:</b>

tables:zemp.

select * from zemp.

delete zemp.

ENDSELECT.

rgds,

bharat.

Read only

paruchuri_nagesh
Active Contributor
0 Likes
1,216

hi if u want to delete data from transparent table have to write simple report program

if u want to delete table

shift+f2 is the short cut key to delete

reward for use ful answers

regards

Nagesh.Paruchuri

Read only

Former Member
0 Likes
1,216

You need to use the FM/BAPI BAPI_REQUISITION_DELETE and then call transaction and archive the data object .