- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-26-2015 04:04 PM
Dear All
I am new in servicenow and I have a request since into the problem tasks everyone can manipulate the task even if they don not belong to the support group.
I would like to know how can I restrict that only the support group which the task is assigned can modify it
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2015 12:02 PM
You wont able to create because write ACL does not allow you to do so,
please modify write ACL code to below.
please replace code with below, it will work.
if(!current.isValidRecord())
{
answer = true;
}
else
{
answer = gs.getUser().isMemberOf(current.assignment_group);
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2015 12:18 PM
Kindly mark answer as correct / helpful .
You are welcome
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2015 12:39 PM
I am still not able to see the options to mark as correct/helpful
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2015 07:25 PM
Could you mark your post as Question if not done already and then try?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2015 12:00 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2015 12:02 PM
You wont able to create because write ACL does not allow you to do so,
please modify write ACL code to below.
please replace code with below, it will work.
if(!current.isValidRecord())
{
answer = true;
}
else
{
answer = gs.getUser().isMemberOf(current.assignment_group);
}