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: 

tables

Former Member
0 Kudos
119

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..

1 ACCEPTED SOLUTION

Former Member
0 Kudos
85

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

6 REPLIES 6

Former Member
0 Kudos
85

Hi limit,

look at TRDIR.

Regards, Dieter

Former Member
0 Kudos
85

hi,

TRDIR.

Former Member
0 Kudos
86

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

Former Member
0 Kudos
85

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

0 Kudos
85

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

0 Kudos
85

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