2007 Feb 23 7:13 PM
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
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
2007 Feb 23 7:15 PM
2007 Feb 23 7:17 PM
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
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |