‎2008 Feb 20 3:04 PM
Hi all,
Who created which program and when?
How can I get this info, thanks.
Deniz.
‎2008 Feb 20 3:05 PM
‎2008 Feb 20 3:06 PM
‎2008 Feb 20 3:16 PM
Hi Rob,
I need to get a report, not just one of the programs.
Thanks.
‎2008 Feb 20 3:21 PM
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
‎2008 Jul 01 12:35 PM
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.
‎2008 Jul 01 12:37 PM
hi,
check program attributes. There you will find every information.
‎2008 Jul 01 12:39 PM
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
‎2008 Jul 01 1:30 PM
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
‎2008 Jul 01 1:35 PM
Did anyone hear about transaction SE90 and the program library?
‎2008 Jul 01 2:07 PM
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
‎2008 Jul 01 2:10 PM
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
‎2008 Jul 01 2:34 PM
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
‎2008 Jul 01 3:26 PM
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