Need a report that shows the date of last updated record for licensed users so We can more effectively manage their license allocation.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2018 02:40 AM
Hi All,
I have a requirement in that
1. Create report that shows when either Entity or Remediation records were last updated and who the user was.
2. This only applies to Active licensed users
3. It should only show the user, last updated date, and record type updated (Entity/Remediation)
I’m wondering if in Community anyone else has tried to identify when a user last updated a record (any record really). Perhaps we look at it from that perspective – the date a user last made an update on any record in ServiceNow?
I’m totally open to suggestions here.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2018 11:28 AM
i want to query Remediation (grc_remediation) table's records

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2018 12:18 PM
I think I have found something that should work.
You need to-
- Create a view joining sys_user, sys_user_role, incident tables (I chose Incident table because I don't have remediation table in my instance but what shouldn't matter since we are talking about inbuilt fields) like this -
- You can then run a report on this view and you should get what you need.
Let me know if this helps.
Priyanka
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2018 04:49 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2018 11:26 AM
It is working if you remove usr_active='True' in the where clause on sys_user. I am trying to find out why it wouldn't take that in the where clause. Meanwhile, try without that.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2018 11:29 AM