CSM - is it possible to limit agent access to case as per assignment group?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2024 11:56 PM
Hi community,
If an CSM agent belongs to a particular assignment group, is it possible to limit this agent's access only to those cases assigned to this assignment group?
Since agent has the customer service agent role and I'm struggling to limit case access.
Many thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2024 01:03 AM - edited 03-26-2024 01:09 AM
Did you try creating ACL ? or before query business rule ?
ACL of type: Read operation on required table with script as below.
anwer=false;
if(gs.getUser().isMemberOf(current.assignment_group))
{
answer=true;
}
I hope this helps..
☑️ Please mark responses as HELPFUL or ACCEPT SOLUTION to assist future users in finding the right solution....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2024 01:54 AM - edited 03-26-2024 02:01 AM
Hi, I tried both actually, sadly didn't work...
ACL has error so can't save, BR no effect at all
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2024 01:55 AM
What was tierd and were is it failing ?
☑️ Please mark responses as HELPFUL or ACCEPT SOLUTION to assist future users in finding the right solution....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2024 02:49 AM
I tried to create a new ACL with the script, had save error, can't save the ACL with the script
also tried to create a new BR, with the script provide, no effect at all, agent can still view all cases regardless of the assignment group the agent is added to and the case is associated with.