- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2015 08:27 AM
I have got support group field on the change form. want to give write access to users whos group matches with the support group.
i am trying to edit the write acl for the form by adding the following script which is not working
var ourUser = gs.getUser();
ourUser.isMemberOf(current.support_group.sys_id);
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2015 08:30 AM
Hi Hakan,
The script will be
answer = gs.getUser().isMemberOf(current.support_group);

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2015 08:30 AM
Hi Hakan,
The script will be
answer = gs.getUser().isMemberOf(current.support_group);