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: 

List of all customer programs

Former Member
0 Kudos

Hi,

Is there a way of getting the complete list of customer programs in the system? Reports and module pools.

Cheers

5 REPLIES 5

Former Member
0 Kudos

hai u can get the entreis in TADIR table of all the custom programs

u cna query on it and fethc them

regards

afzal

Sandeep_Kumar
Advisor
Advisor
0 Kudos

Table TADIR.

PROGID : R3TR

Object type : PROG ,

Find all objects startingw ith Y* and Z*.

Former Member
0 Kudos
DATA: itab TYPE TABLE OF tadir,
      fs TYPE tadir.

SELECT * FROM tadir 
                  INTO TABLE itab 
             WHERE pgmid = 'R3TR' AND 
                          object = 'PROG' AND 
                     obj_name BETWEEN 'Y*' AND 'ZZZZ*'.

LOOP AT itab INTO fs.
  WRITE:/ fs-obj_name.
ENDLOOP.

This will retrieve the customer Reports and module pools.

Thanks&Regards

Sarves

Former Member
0 Kudos

This message was moderated.

0 Kudos

Hi munibabu,

Whats the use of Posting(Pasting) the same code which is provided by the person above you?

Please Read the [Community Guidelines|https://www.sdn.sap.com/irj/scn/blogs-communityguidelines] before posting anything.

Regards

Karthik D