Skip to Content
0
Former Member
Dec 24, 2007 at 07:07 AM

Deletion of table entries from the programTADIR

321 Views

i am using the the program to fetch the data from TADIR and for certain package and i am displaying the data on the screen.know i need to delete the data in the table TADIR, in the debugging mode i have noticed that the developement class is also existing so when i write the delete statement in the loop then the development class will also get deleted, can any one help me out in this, attached sample code.

SELECT pgmid "Program ID in Requests and Tasks.

object "Object Type.

obj_name "Object Name in Object Directory.

srcsystem "Original System of Object.

author "Person Responsible for a Repository Object.

devclass "Package.

crelease "SAP Release.

delflag "Deletion Flag.

FROM tadir INTO TABLE i_fetch_data

WHERE devclass = p_dclass.

IF sy-subrc = 0.

LOOP AT i_fetch_data INTO wa_fetch_data.

WRITE:/10 wa_fetch_data-pgmid,

30 wa_fetch_data-object,

50 wa_fetch_data-obj_name.

delete table i_fetch_data from wa_fetch_data