- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2024 08:31 PM - edited 04-04-2024 02:26 PM
On INC form, we have created 2 custom fields 'Field 1' and 'Field 2'.
The requirement is, there is a group called 'Infra Architects'. They should be allowed to edit above 2 fields and ALL other remanining fields should be read only.
Note - the users from that group does not have Table level write access. They just need field level write access.
Is it possible?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2024 09:21 PM
I think First you have to give Table level write access then apply * level read access(to make all fields read only for that group) and then you can give field level write ACL to give write access for those two fields.
Please Mark ✅Correct if this solves your query and also mark 👍Helpful if you find my response worthy based on the impact.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2024 08:41 PM
You can give * level read ACL for the group('Infra Architects'). Then you can write two field label write ACL of Field1 and Field2, Below is sample ACL script :
var answer=false;
if(gs.getUser().isMemberOf('Infra Architects'))
{
answer=true;
}
Please Mark ✅Correct if this solves your query and also mark 👍Helpful if you find my response worthy based on the impact.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2024 09:14 PM
Apologies, missed a point, just added it
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2024 09:21 PM
I think First you have to give Table level write access then apply * level read access(to make all fields read only for that group) and then you can give field level write ACL to give write access for those two fields.
Please Mark ✅Correct if this solves your query and also mark 👍Helpful if you find my response worthy based on the impact.
Thanks