- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-02-2025 05:57 PM
I have a group called X for which i need to hide the work notes. They can have access to all the incidents but shouldn't be able to see the work notes on them.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-03-2025 11:24 AM
Hi @ark257,
Use Access Analyzer to determine which read ACLs that allow the users to see incident.work_notes
For those ACLs, add the below script to deny read access:
if (gs.getUser().isMemberOf('name of group')) {
answer = false;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-03-2025 11:24 AM
Hi @ark257,
Use Access Analyzer to determine which read ACLs that allow the users to see incident.work_notes
For those ACLs, add the below script to deny read access:
if (gs.getUser().isMemberOf('name of group')) {
answer = false;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-03-2025 02:29 PM
Hi @frviuf
This is really working.
I had a query, in our instance we have three departments X,Y and Z. The people in this group belongs to department Z and they shouldn't be able to see any other tickets where caller is not from their department.
They should also not see any change, problem or tasks and shouldn't be able to update anything on those incidents they can see.
I have written a business rule for this but it didn't work
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 weeks ago
Hi @frviuf
The provided solution stopped everyone from seeing work notes or updating them which is not something I am after. Can you please let me know if there is anything else we can do ?
Regards
Avinash
