- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2023 07:29 PM
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?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2023 07:42 PM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2023 12:23 AM - edited 10-18-2023 12:23 AM
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