How to hide the resolved tickets in incident list for itil users without acl.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2024 10:19 PM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-17-2024 05:41 AM
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]
****************************************************************************************************************

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-17-2024 05:44 AM - edited 12-17-2024 05:46 AM
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.