This will give you a good idea. You may want to add a filter for the various "ANYWHERE_%" groups, and also in your select query return the IP address (MAXSESSION.CLIENTADDR) in your query. You could then pipe that into a BIRT report and gain visibility that way. My guess is that you have either an MDM or other tool that can tell you whose IP belongs to which device.
In the earlier versions of Maximo Anywhere the MobileFirst server did have a database that kept track of the device logins. I created a custom report years ago and tied the login of the user to the login of the device (there was a key between the MobielFirst DB and th Maximo DB.) The report then told me what users were logging into any given Anywhere app specifically. With the removal of the MobileFirst server from the solution this is no longer possible.
------------------------------
Bradley K. Downing , MBA
IBM Certified Adv. Deployment Prof. Maximo v7.6.1
IBM
Bakersfield CA
------------------------------
Original Message:
Sent: Wed June 09, 2021 12:21 PM
From: User1971
Subject: Determine what users are connected to Anywhere?
Thanks Bradley. That helps.
If I understand correctly:
I can query for who is using Maximo. And I can see what security groups they have. But I can't easily determine what they're using (desktop or Anywhere). Unless they only have security to use one or the other (or make an educated guess if certain users would probably only be using one or the other, even if they have security to access both).
--Oracle query
select u.userid, personid, loginid, security_groupsfrom maximo.maxuser uleft join ( select userid, listagg(groupname,', ') within group( order by groupname ) as security_groups from maximo.groupuser group by userid ) sec on u.userid = sec.useridwhere
--this was borrowed from a Maximo saved query exists (select 1 from maximo.maxsession where (userid = u.userid))order by security_groups

For example, the user with these security groups: ANYWHERE_TECHNICIAN, MAXEVERYONE, SELFSR is probably only using Anywhere, not desktop.
#Maximo
#MaximoAnywhere
#AssetandFacilitiesManagement