- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-29-2022 12:42 AM
The assigned group working on the cases must have access to work notes and additional comments on the case.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-04-2022 01:57 AM
HI Shafi ensure there is only one write ACL on the table for worknotes.
script:
if(gs.getUser().isMemberOf(current.assignment_group.sys_id))
answer = true;
Refer attached screenshot for example
1. members of group can edit and see worknotes
2. ITIL user Non member of group cannot see worknotes
Harish

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-03-2022 02:29 AM
Try this
if(legalOperationsSecurity.checkUserHasRequestWriteAccess() && current.assigned_to == gs.getUserID()){
answer = true;
}
also under ACL related list you will have a option called show ACL execution plan click this to see which order this ACL is executing and check other field acls
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-03-2022 02:37 AM
The code didn't work.
The ACL execution plan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-03-2022 02:28 AM
When case is created and assigned to group, until then worknotes is visible. When it is assigned to someone else from same group, the worknotes is getting disappeared.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-03-2022 06:10 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-04-2022 12:20 AM
Hi harish,
No luck, still work notes is not visible to other members from same group. When it is assigned to self it is visible. Why is this?