Security incident field/table query

Vengeful
Mega Sage

We have a Security incident field to the incident form and a Security Incidents table, our client wants it to be visible only to their group. Can this be done via ACL?

Merza_0-1697595919334.png

Merza_1-1697595996323.png

 

 

1 ACCEPTED SOLUTION

Danish Bhairag2
Tera Sage
Tera Sage

Hi @Vengeful ,

 

Yes the field can be hidden displayed via ACL to users of a particular group.

You just need to create a field level ACL for security incident field to be displayed & under script section for the ACL u can write below script

 

if(gs.getUser().isMemberOf('')){ // enter group name under qoutes

answer = true;

}else{

answer = false

}

 

& for module u can edit that module via the pencil icon available next to it & provide the role which only that group has.This way it will only be visible to that group.

 

Thanks,

Danish

 

View solution in original post

5 REPLIES 5

Danish Bhairag2
Tera Sage
Tera Sage

Hi @Vengeful ,

 

If I have answered your question correctly can you please mark the solution as accepted so that others can benefit from it whoever visits this post.

 

Thanks,

Danish