- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2024 07:07 PM
Hello friends,
I am creating an ALC on a table. I have to give access to a group "Alert Managers" to edit only one field "Supported By" having "support" role.
I have created one ACL :
READ ACL -- Table.None -- support role
WRITE ACL -- Table.field -- support role
But the group members are not able edit the field.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2024 12:07 AM
@Asmita7 If the ACL is extending the write permission to all the fields then you can create another ACL
WRITE ACL -- Table.* -- admin role.
This way only a specific field would be editable by support role and rest can be edited by a higher role (e.g. admin)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2024 07:31 PM
Hello @Asmita7
Check if there are any UI policies or Client scripts on the table making the fields read only.
Please mark this answer as helpful and correct if helped.
Kind Regards,
Ravi Chandra

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2024 08:03 PM
@Asmita7 You need to create one more ACL
WRITE ACL -- Table.None -- support role
This ACL will allow them to have write permissions at the table level. Field ACL will govern their access to field level.
Hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2024 08:50 PM
Thank you @Sandeep Rajput
Will this ACL give access to edit all the fields ? I need to give access to only one field.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2024 12:07 AM
@Asmita7 If the ACL is extending the write permission to all the fields then you can create another ACL
WRITE ACL -- Table.* -- admin role.
This way only a specific field would be editable by support role and rest can be edited by a higher role (e.g. admin)