How can we tell who has logged into the instance using the ServiceNow Mobile app
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-27-2018 01:25 PM
We need to be able to monitor who is logging into our imstance using the ServiceNow Mobile app.
Is there a table that we can report against and what filter would we create.
- Labels:
-
Now Mobile
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-27-2018 07:15 PM
See if the [sys_mobile_devices] table has the info you're looking for. You can get to it from: System Mobile UI > Mobile App > Devices in the navigator menu.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-28-2018 03:38 AM
Hi,
First, You can have a look at all the users using/used app as stated by Nia via sys_mobile_devices.
Furthermore, if you want to see how frequently people log in using the mobile or mobile app then you can use the syslog_transaction table and look for the following filter
For mobile app:
URL = /api/now/v1/mobile/home?api=api
OR
URL = /api/now/v1/mobileapp/devices?api=api
For mobile browser logins:
URL =/api/now/mobile/home?api=api
and group by Created By field. You will have a useful report.
It would be something similar as below:
In addition to the URL filters, you can apply a date filter on Created to look at the data for a particular period.
Mark it as Correct and Helpful if it was.
