- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-02-2022 07:24 AM
I have a field that already has an ACL set up with a bunch of different conditions. I want to edit this ACL so that the field becomes editable to users in a specific group, at ALL times, regardless of the conditions. Just adding the role to the Required Roles embedded list doesn't seem to do anything, and I don't want to edit the conditions. I'm not sure how to proceed from here. Do I need to move everything to a script instead?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-02-2022 07:35 AM
Instead, create a new acl for that field without any conditions and provide access to the specific group.
Use below to check user membership.
gs.getUser().isMemberOf(' ');
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-02-2022 07:35 AM
Instead, create a new acl for that field without any conditions and provide access to the specific group.
Use below to check user membership.
gs.getUser().isMemberOf(' ');
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-09-2023 10:17 AM
I tried but is not working
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-07-2024 08:45 AM
Thank you so much! that helped me a lot

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-02-2022 07:37 AM
Yes I think it would work best if you script everything. That way the first part of the script could check group membership and/or role. They way ACLs work is it first check for role if you have one in the list then if you have conditions it check them. If either fails then the ACL will in your case block the access.