‎2007 Apr 20 3:44 AM
Hello, I wonder if anyone could help me?
The requirement given by the client calls for a report that displays the usage of a transaction code, specifically the following:
1. given the transaction code, the date/time it was last used and the user who used it;
2. given a key date (default current), the list of transaction codes used in the last three months, the user who last used it, also with date and time.
I have looked at the tcode ST03, but it only gives me the list of transaction codes and users who accessed the transaction code. I need the access date and time in order to meet the requirement.
Thanks in advance. Ü
‎2007 Apr 20 4:39 AM
chk this from other thread
also chk the structure MYLIST for the required informatiuon
report abc.
DATA : MYLIST LIKE UINFO OCCURS 0 WITH HEADER LINE.
PARAMETERS : TCODE LIKE TSTC-TCODE.
CALL FUNCTION 'TH_USER_LIST'
TABLES
LIST = MYLIST.
LOOP AT MYLIST WHERE TCODE = TCODE.
WRITE : / MYLIST-BNAME , MYLIST-TCODE.
ENDLOOP.
‎2007 Apr 20 4:59 AM
@Chandrasekhar Jagarlamudi :
Thank you this has been very helpful, although this function returns only the users from the current date, correct? It a great start, though.
I would also need something like this given any date, if anyone can help further.
Thanks again.