How do I remove catalog items from the main page when I click on Service Catalog

Kaz9
Giga Expert

Here is a screen shot of what it looks like when I click on service catalog (order something). It populates options on the right hand side of the catalog and I can't figure out how to adjust what shows there to add or remove catalog items.

I want to remove the Other Software Request and Other Hardware Request, just from that screen. I still want to keep those catalog items in their perspective categories. Too many people are just clicking on those options rather than just going to the hardware or software Categories tab.

Thanks for all of your help! I love the servicenow community!

1 ACCEPTED SOLUTION

I found the answer on this thread hereRemoving certain catalog items from Popular Items Widget in Istanbul




I added this line


count.addQuery('cat_item.name', 'DOES NOT CONTAIN', 'Other');



that filtered out anything that had Other in the name.


View solution in original post

5 REPLIES 5

I found the answer on this thread hereRemoving certain catalog items from Popular Items Widget in Istanbul




I added this line


count.addQuery('cat_item.name', 'DOES NOT CONTAIN', 'Other');



that filtered out anything that had Other in the name.