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

Finding All Developement Object.

Former Member
0 Likes
625

Hi,

I want to prepare a list of all developement objects develoepd by a particular user... can u guide me if we have a single TCODE for that.

Mona

2 REPLIES 2
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
453

You may be able to get this information from the table TADIR using transaction code SE16.

You could query on the AUTHOR field.

Regard,

Rich Heilman

Message was edited by:

Rich Heilman

Read only

Former Member
0 Likes
453

Hi Mona,

I think there is no tcode which descirbes all objects developed by a user.

You need to query on TADIR table by user name ie (TADIR-AUTHOR).

SELECT OBJ_NAME

FROM TADIR

INTO TABLE ITAB

WHERE PGMID = 'R3TR'

AND OBJECT = 'PROG'

AND AUTHOR = <USER-NAME>.

Thanks,

Vinay