2007 Jul 12 12:33 PM
hi
i need a table which display all the object which are created with creation date.
for e.g table TADIR display all object ,but the creation date is not there.but i need it.
plz... reply me..
2007 Jul 12 12:36 PM
hi..
Doesn't seem to be a creation date field for tcodes, huh? Well, lets look at it this way. The tcodes are usually created around the same time as the corresponding report or module pool program, right? So if that is the case, you can join the TSTC and the TRDIR table and get the creation date of the report program.
<b>Reward points if useful</b>
Regards
Ashu
2007 Jul 12 12:35 PM
2007 Jul 12 12:36 PM
2007 Jul 12 12:36 PM
hi..
Doesn't seem to be a creation date field for tcodes, huh? Well, lets look at it this way. The tcodes are usually created around the same time as the corresponding report or module pool program, right? So if that is the case, you can join the TSTC and the TRDIR table and get the creation date of the report program.
<b>Reward points if useful</b>
Regards
Ashu
2007 Jul 12 12:38 PM
Hi
Enter the Objectname in <b>TRDIR</b> table in NAME field
and Take <b>CDAT</b> field which is creation Date of the object
<b>CNAM</b> -Created By
<b>UNAM</b> - Changed By
<b>UDAT</b> - Changed date
<b>Reward points for useful Answers</b>
Regards
Anji
2007 Jul 12 12:56 PM
hi
TRDIR is the view know.. is there is any table related to this..
i asking the table which shows all object creation.. for. e.g tables, function module, program,etc...
Message was edited by:
limat
2007 Jul 12 1:17 PM
Hi limat,
what do mean by this, you can normally reas it like this:
TABLES: TRDIR.
*
PARAMETERS: P_NAME LIKE TRDIR-NAME.
*
INITIALIZATION.
*
P_NAME = SY-REPID.
*
START-OF-SELECTION.
*
SELECT SINGLE * FROM TRDIR WHERE NAME = P_NAME.
*
IF SY-SUBRC = 0.
WRITE: / TRDIR-NAME, TRDIR-CDAT, TRDIR-UDAT.
ENDIF.
Regards, Dieter