‎2005 Sep 27 7:26 AM
Wheneever we make a new T-code from any user, it creates a Request no. My Requirement is that which T-code is made by which User. I have seen table TSTC but User name is not there. can i get this information from any table aur T-code.
abhishek Suppal
‎2005 Sep 27 7:43 AM
Hi,
Look at table TADIR. There is a field for the responsible person.
Svetlin
‎2005 Sep 27 7:43 AM
You have two ways -
Goto SE16 , TADIR ,
PGMID - R3TR
OBJECT - TRAN
OBJ_NAME - <TCODE> ,
In the AUTHOR field you can see the person who created teh tcode.
Alternatively you can find all the transports that have this transaction.
Goto SE03 -> Search for Objects in Request ->
Fill in R3TR TRAN <TCODE> in ( selection of objects section ) . You can also see further restrictions like "Modifiable"/ "Released" etc .
Fill in the these and just execute , you will all the requests which have this tcode. This way you can also find out who all have changed a particular tcode and when.
Cheers
‎2005 Sep 27 7:43 AM
Hi,
You can read database table TADIR with PGMID = 'R3TR'
and OBJECT = 'TRAN' and OBJ_NAME = <your T-code>.
Author is the field that will tell you which user created the T-code.
Sri
‎2005 Sep 27 7:44 AM