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

Access to a T.Code

Former Member
0 Likes
838

Hi,

Is there any way to find out how many users are accessing a specific T.Code.

Regards

Jiku

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
806

Hi jiku,

1. For this purpose, i have just now

written one small program.

2. On selection screen, just enter the TCODE

and it will output the users.

3. just copy paste.

4.

report abc.

DATA : MYLIST LIKE UINFO OCCURS 0 WITH HEADER LINE.

PARAMETERS : TCODE LIKE TSTC-TCODE.

<b>CALL FUNCTION 'TH_USER_LIST'

TABLES

LIST = MYLIST.</b>

LOOP AT MYLIST WHERE TCODE = TCODE.

WRITE : / MYLIST-BNAME , MYLIST-TCODE.

ENDLOOP.

.

regards,

amit m.

6 REPLIES 6
Read only

Former Member
0 Likes
806

you can check SM04 transaction

Read only

Former Member
0 Likes
806

Hi

Yes, Using the Tcode <b>SUIM</b> you will know this.

reward if useful

regards,

ANJI

Read only

Former Member
0 Likes
806

it depends on what you mean by "accessing". SUIM will allow you to see who CAN run a specific transaction. STAT will show you, for a specific time period, who actually DID run a transaction. Also, ST03 will show you a transaction profile over a given time period with this information.

Read only

0 Likes
806

Actually, I want to know how many users are currently processing or running a particular T.Code.

Read only

Former Member
0 Likes
806

Hi jiku,

this for those who used the transaction.

go to ST03 , In the header change to administrator mode

and then in the analysis view u can find transaction profile, just click on that

u can find tcode if u double click on that u can find how many users are used this.

and if u want see who are all authorised to see

just go to AGR_USERS and AGR_TCODE these tables and give ur tcode name then u can find the users.

Hope u understand it. if u want in detail also i can help in this topic.

Regards

Siva

Read only

Former Member
0 Likes
807

Hi jiku,

1. For this purpose, i have just now

written one small program.

2. On selection screen, just enter the TCODE

and it will output the users.

3. just copy paste.

4.

report abc.

DATA : MYLIST LIKE UINFO OCCURS 0 WITH HEADER LINE.

PARAMETERS : TCODE LIKE TSTC-TCODE.

<b>CALL FUNCTION 'TH_USER_LIST'

TABLES

LIST = MYLIST.</b>

LOOP AT MYLIST WHERE TCODE = TCODE.

WRITE : / MYLIST-BNAME , MYLIST-TCODE.

ENDLOOP.

.

regards,

amit m.