Application Development 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: 

list of currently uers logged on in sap server using mobile device .

suman_kurdekar
Explorer
0 Kudos

I want list of currently users logged on in sap server from all device . al08 transaction gives list users logged on in r3 , from system but wont show users logged on from mobile .. TH_USER_LIST and THUSRINFO also same result as AL08 ...

7 REPLIES 7

0 Kudos

Have a look at the HTTP Security Sessions - TA: SM05

0 Kudos

In tat how we will get to know user is logged in from mobile device .

Ryan-Crosby
Active Contributor
0 Kudos

Hi Suman,

Users logged in via mobile device are likely going to be authenticated/active elsewhere (Gateway, HCP, etc.) and they certainly would not have a GUI session open. Everything is based upon HTTP request/response so specific users would only show logged in while executing a service call of some sort and that's if you are not using reference users of any sort.

Regards,

Ryan Crosby

0 Kudos

Hi Ryan,
Using transaction al08 - type of session shows SYSTEM if logged from system(web) , gui if logged in from r3 , in same way i want from mobile .... And function module 'thusrinfo' gives type 2 for SYSTEM , 4 for gui and other ... but nt getting when user log in from mobile ...

0 Kudos

Hi Suman,

That's because they will only be logged into the system during the brief window during which time a service request is being executed. HTTP is a connectionless protocol and will only have a connection to the server during the time a request is being fulfilled. You might be able to get the session information as Thomas has suggested but doubtful that it would be from your back end system.

Regards,

Ryan Crosby

0 Kudos

Hi Ryan ,

I checked SM05 in that we are getting if logged in from desktop(system) but it not giving when logged in from mobile device .

Regards,
Suman

0 Kudos

Hi Suman,

Just as I suspected would be the case... mobile users are not directly logged into the back end system via mobile devices. For that information you would need to collect session data from whatever Gateway system you are using.

Regards,

Ryan Crosby