Make records accessible for service desk and assigned to group members
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2023 03:23 AM
I’m trying to make the list of records accessible for service desk and the assigned to group members. Should I use ACL, script or other method? Please advice.
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2023 05:52 AM
Hi @Kogila Oke ,
ACL will be the best option over here. You can create a Read ACL on the respective table & under script section which is available once clicked on Advanced write below code
if(gs.getUser().isMemberOf('enter assignment group Sys ID or name') || current.assigned_to == gs.getUserID()){
answer = true;
}
Thanks,
Danish