want a report unused catalog items
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2024 11:13 AM
I want a report on unused catalog items and also need the date when that was lastly used
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2024 01:00 PM
What have you already tried? What is the exact problem you are struggling with? Do you know what type of record is created from a catalog item in ServiceNow? Do you know which field stores the creation date of a record in ServiceNow?
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
08-15-2024 01:18 PM
Hi @harsha vv ,
If you have PA you can created a scripted automated indicator to capture the utilization from the catalog.
If my answer has helped with your question, please mark my answer as accepted solution and give a thumb up.
Best regards
Anders
If my answer has helped with your question, please mark my answer as the accepted solution and give a thumbs up.
Best regards
Anders
Rising star 2024
MVP 2025
linkedIn: https://www.linkedin.com/in/andersskovbjerg/

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2024 02:35 PM
You can create a database view with a left join. You will need the following tables in the view. You can add left join to the list. Make sure you follow the order in the screenshot below.
Then to run a report you just need the item field (this will be from the sc_req_item table) along with name field which is from the sc_cat_item table. Use the following conditions to get what should just be catalog items. Anything where sc_cat_item is empty the corresponding item has never been ordered.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2024 11:39 PM
Hi brian,
thanks for responding, I want only last 6 months data of unused catalog items. Can you help me on this please?