- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2021 12:32 PM
Hi,
I would like to create a report where I can find all Requested items that are Closed (Closed complete) but the associated Catalog Tasks are still open.
How can I create a report for this in ServiceNow?
Thank you,
Preet
Solved! Go to Solution.
- Labels:
-
Request Management
-
Service Catalog
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2021 12:41 PM
In a list of Catalog Tasks or a report based on [sc_task] table, apply the following filter:
Active = true AND Request Item.Active = false
Or if you are specifically interested in Closed Complete state:
Active = true AND Request Item.State = Closed Complete
Blog: https://sys.properties | Telegram: https://t.me/sys_properties | LinkedIn: https://www.linkedin.com/in/slava-savitsky/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2021 12:41 PM
In a list of Catalog Tasks or a report based on [sc_task] table, apply the following filter:
Active = true AND Request Item.Active = false
Or if you are specifically interested in Closed Complete state:
Active = true AND Request Item.State = Closed Complete
Blog: https://sys.properties | Telegram: https://t.me/sys_properties | LinkedIn: https://www.linkedin.com/in/slava-savitsky/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2021 05:49 PM
Thank you for your help! It works!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2021 09:40 AM