How to restrict group members not to see other category incidents
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2024 11:28 PM
Hi,
Currently I have stucked in one point.
if the incident category is IT Infrastructure, then it should be visible to particular group (monitoring, delivery team) other categories should not be visible to these groups.
Regards,
Balateja.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2024 07:54 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2024 11:59 PM
then firstly i need to know your exact requirement , you want that if the incident category is IT Infrastructure, then only these particular group members (monitoring, delivery team) can see that incident. Right??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2024 12:13 AM
yes, exactly..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2024 12:37 AM
Navigate to User Administration > User Criteria.
2. Click on “New” and define the criteria, such as “IT Infrastructure Access”.
3. Add the groups “Monitoring” and “Delivery Team” to this criteria.
Go to System Security > Access Control (ACL).
2. Click on “New” to create a new Access Control. (you need system_admin role) elevate role first .
TYpe : record
operation : read
In the Condition section, specify that the rule applies when the incident’s category is “IT Infrastructure”.
Script:
return gs.getUser().isMemberOf('Monitoring') || gs.getUser().isMemberOf('Delivery Team');
provide exact names of your group.
Note: Please Mark this Helpful and Accepted Solution. If this Helps you to understand. This will help both the community and me..
- Keep Learning
Thanks & Regards
Deepak Sharma
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2024 01:49 AM
yes, exactly.