want a report unused catalog items

harsha vv
Tera Contributor

I want a report on  unused catalog items and also need  the date when that was lastly used 

6 REPLIES 6

Slava Savitsky
Giga Sage

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?

AndersBGS
Tera Patron
Tera Patron

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/

Brian Lancaster
Tera Sage

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.

BrianLancaster_0-1723757525030.png

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.

BrianLancaster_1-1723757737495.png

 

 

Hi brian,

 

thanks for responding, I want only last 6 months data of unused catalog items. Can you help me on this please?