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

Getting the Transaction/Transaction Code Usage data

Former Member
0 Likes
408

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

2 REPLIES 2
Read only

Former Member
0 Likes
360
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.
Read only

0 Likes
360

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