How to hide the resolved tickets in incident list for itil users without acl.

ManjunathP
Tera Contributor

Hi,

 

I need to achieve how to hide the resolved and closed records in incident list without acl. How can we do this use case?

 

Please help me out.

Thanks,

Manju

2 REPLIES 2

Dr Atul G- LNG
Tera Patron
Tera Patron

Hi @ManjunathP 

 

What is use case here? ACL is best or create a filter and shared with ITIL users.

*************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.

Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]

****************************************************************************************************************

JenniferRah
Mega Sage

You could create a Before Query business rule. Add your condition (You would at least want to exclude admin role and maybe some others.) and then in the script have it be something like this:

 

 

current.addActiveQuery();
current.addQuery('state', '!=', 6);

 

 

You can look at the OOTB "user query" business rule to see something similar. This won't completely hide the items. If they have a direct URL, they can still see them. But it won't show in a list view.