- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2018 10:10 AM
Only current Assignment Groups should have access to update Assignment Group field on Incident form.
Please help! I tried business rule but able to select groups which the user is member of but unable to restrict group change if user is not member of group.
Suppose: Incident 123 is assigned to Network group only users from Network must be able to update assignment group of Incident. For all other users there must be an error message.
Thanks in advance!
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2018 10:59 AM
Build you ACL condition as
Ok...You will have to write script in the ACL as below
answer = false;
if (current.assignment_group!='' && (gs.getuser().isMemberOf(current.assignment_group.toString()) || gs.getuser().isMemberOf('ServiceDesk') || gs.getuser().isMemberOf('Network')))
{
answer = true;
}
Please mark this response as correct or helpful if it assisted you with your question.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2018 10:13 AM
You need an Write ACL for this on Incident Table on Assignment Group field.
ACL condition should be
Assignment Group Is Not Empty && Assignment Group Is Dynamic 'My Group'
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2018 10:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2018 10:21 AM
it does not work

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2018 10:23 AM
Can you share a screenshot of your ACL?
Please mark this response as correct or helpful if it assisted you with your question.