How to give permissions for a particular group member's on a table to create/update records?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2022 02:45 AM
Hi Community,
I have a table titled as "service request' , i want a group 'Requested members' in that 5 group members are available, for that 5 members only have permissions to create/update records on that table.? How many ACL are required and what are they. need detail help.
Thanks in advance.
Regards,
Rafmine

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2022 05:30 AM
Hi,
You need 2 ACL of type Create & Write on required table with script as below
answer=false;
if(gs.getUser().isMemberOf('pass group name here')) //pass group name accordingly
{
answer=true;
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2022 05:48 AM
Hi Jaspal,
can you tell what are the two different ACL's, like table or record/read/write etc. kindly provide more information.
Regards,
Rafmine

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2022 06:02 AM