How to restrict group members not to see other category incidents

Talari Balateja
Tera Expert

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.

12 REPLIES 12

Hi @Deepak Shaerma 

 

it's not working.

 

Regards,

Balateja

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??

@Deepak Shaerma 

yes, exactly..

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.

DeepakShaerma_0-1712129730793.png



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

yes, exactly.