‎2007 Apr 18 11:59 AM
Hi,
Is there any way to find out how many users are accessing a specific T.Code.
Regards
Jiku
‎2007 Apr 18 12:39 PM
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.
‎2007 Apr 18 12:02 PM
‎2007 Apr 18 12:02 PM
Hi
Yes, Using the Tcode <b>SUIM</b> you will know this.
reward if useful
regards,
ANJI
‎2007 Apr 18 12:08 PM
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.
‎2007 Apr 18 12:19 PM
Actually, I want to know how many users are currently processing or running a particular T.Code.
‎2007 Apr 18 12:26 PM
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
‎2007 Apr 18 12:39 PM
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.