Application Development 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: 

Need a program to fetch the data from the package and delete the programs

Former Member
0 Kudos
102

i need a program which uses the selection screen as input parameters which should accept as package and after execution it should show all the programs in the list and then the programs should be deleted from the package.

3 REPLIES 3

gopi_narendra
Active Contributor
0 Kudos
67

You can use SE80 for the same.

Regards

Gopi

Former Member
0 Kudos
67

Hi

Use below query to fetch programs from the entered dev Class

SELECT * FROM tadir into table itab

WHERE pgmid = 'R3TR'

AND object = 'PROG'

AND devclass = p_class.

In the program we can delete records from Tadir by looping ITAb,

but other program related tables will have this entry .

Hope this Helps.

Praveen

matt
Active Contributor
0 Kudos
67

Do not delete directly from tables. Use SE80 as indicated.

matt