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

tables

Former Member
0 Likes
896

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
Read only

Former Member
0 Likes
862

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
Read only

Former Member
0 Likes
862

Hi limit,

look at TRDIR.

Regards, Dieter

Read only

Former Member
0 Likes
862

hi,

TRDIR.

Read only

Former Member
0 Likes
863

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

Read only

Former Member
0 Likes
862

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

Read only

0 Likes
862

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

Read only

0 Likes
862

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