- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-29-2019 04:14 AM
I have a table titled as "service request', Now irreescpective of all the users have persmission to create new records.
Query: i have group titled as 'Requested members' in that 5 group members are available, for that 5 members only have permissons to create records on that table.
How can we acheive this
?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-30-2019 02:03 AM
Hi Nag,
Create an ACL for create and Write and put this code there, that shoudl work.
In the script, put the code like below
if(gs.getUser().isMemberOf("your group NAME")){
answer = true;
gs.log(gs.getUser().isMemberOf("your group NAME"),"acl working now");
}else
{
answer = false;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-30-2019 05:22 AM
Hi Nag,
So for what type of user it is not working and when it is working
Did you create a group and added those 5 users to that?
also did you give the group name correctly in that script?
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-30-2019 07:24 AM