[Ig] Using ACL

Suggy
Giga Sage

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?

1 ACCEPTED SOLUTION

@Suggy 

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

View solution in original post

3 REPLIES 3

Maddysunil
Kilo Sage

@Suggy 

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

Apologies, missed a point, just added it

@Suggy 

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