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

who created which program and when?

Former Member
0 Likes
2,365

Hi all,

Who created which program and when?

How can I get this info, thanks.

Deniz.

13 REPLIES 13
Read only

Former Member
0 Likes
2,134

HI,

Please refer to TRDIR table.

Thanks,

Sriram Ponna.

Read only

Former Member
0 Likes
2,134

Just display the program attributes.

Rob

Read only

0 Likes
2,134

Hi Rob,

I need to get a report, not just one of the programs.

Thanks.

Read only

0 Likes
2,134

Then why not mention that in the original posting? You ask your users to identify all of their requirements up front don't you?

Rob

Read only

Former Member
0 Likes
2,134

The data you require is present on table TRDIR.

the corresponding fields are

CNAM - Author

CDAT - Created on

Please close the thread if your doubt is cleared.

Regards,

Vijay.

Read only

Former Member
0 Likes
2,134

hi,

check program attributes. There you will find every information.

Read only

Former Member
0 Likes
2,134

Hi,

Simply you can check the Program Attributes, it contains the Created Date, Modified Date, Created By...etc and even you go and check the status in TRDIR database table.

Reward points if it is helpful.

Regards,

Ravi

Read only

Former Member
0 Likes
2,134

Hi Deniz,

Pls execute the below report... u will get the details...

in select option

S_NAME = z*

PRG_TYP = 1

and F8 (Run)

REPORT Z_PRG_DETAIL.

TABLES : TRDIR.
DATA : BEGIN OF WA_TRDIR,
        NAME TYPE TRDIR-NAME,
        CNAM TYPE TRDIR-CNAM,
        CDAT TYPE TRDIR-CDAT,
       END OF WA_TRDIR.

DATA : IT_TRDIR LIKE STANDARD TABLE OF WA_TRDIR WITH HEADER LINE.

SELECT-OPTIONS : S_NAME FOR TRDIR-NAME,
                 PRG_TYP FOR TRDIR-SUBC.

SELECT NAME CNAM CDAT FROM TRDIR INTO TABLE IT_TRDIR WHERE NAME IN S_NAME AND SUBC IN PRG_TYP.

LOOP AT IT_TRDIR.

  WRITE : / IT_TRDIR-NAME, IT_TRDIR-CNAM, IT_TRDIR-CDAT.

ENDLOOP.

Hope it will solve your problem..

Thanks & Regards

ilesh 24x7

Read only

0 Likes
2,134

Did anyone hear about transaction SE90 and the program library?

Read only

0 Likes
2,134

Hi Thomas Zloch,

Thanks for the information about SE90.. it's also a very useful Tcode..

Many people knows abt SE90 SE84 SE80 etc etc...

But For this requiremtn it will give you program name and it's description.. and it will not give creater and date of creation... and many other information...

it will not provide you the other details at one click...

Thanks & Regards

ilesh 24x7

Read only

0 Likes
2,134

well, you have to click another button "complete list", then you see it all...

still better than writing a program for it, isn't it?

Cheers

Thomas

Read only

0 Likes
2,134

Hi Thomas,

Yep True....

Very True...

Thanks for sharing your knowledge...

But If User wants something else in selection screen then what is available in standard se90 or se84 or any other TCODE or Program....

Again There can be many solution for one problem... And I provided one of the solution...

If user wants program type in seleciton screen

like

Created DATE

Created By

Modified DATE

Modified By

If user wants these and may be some other details in selection screen then ???

Alternative is to use direct SE16 as well...

So there are many solutions to one problem... it all depends on user/customer/client's requirement...

Correct me if i am wrong..

Thanks & Regards

ilesh 24x7

Read only

0 Likes
2,134

Sure, often there's many ways to solve a particular problem. My approach is to look for existing functionality first, saves ressources.

By the way, with the exception of "created on" you can have these selection also in SE90, after clicking the button "all selections" (with the plus sign) on the selection screen.

Greetings

Thomas