I want to make a field editable to a specific group with UI policies.

Akhila P
Tera Contributor

Hi All,

There is a requirement.

there is a specific field called Migration_date, I want this field to be editable to specific group members,Lets say the group name is 'X'. I don't have a security admin role to write ACL for this.

How can I achieve this without writing ACL.?

 

Thanks&Regs

1 ACCEPTED SOLUTION

Danish Bhairag2
Tera Sage
Tera Sage

Hi @Akhila P ,

 

Then you might need to go with onLoad/onChange client scripts & Script include using the GlideAjax, verify if the members are from a certain group return true to client script & if true found in client script do setReadOnly false else true.

 

Thanks,

Danish

 

View solution in original post

3 REPLIES 3

Danish Bhairag2
Tera Sage
Tera Sage

Hi @Akhila P ,

 

Then you might need to go with onLoad/onChange client scripts & Script include using the GlideAjax, verify if the members are from a certain group return true to client script & if true found in client script do setReadOnly false else true.

 

Thanks,

Danish

 

Gillerla Rajesh
Tera Contributor

In ui policy mention in condition assignment group this one means and set ui policy action fields read only

SaurabhGidwani
Tera Contributor

Hi @Akhila P  way to go about it:
Create a onLoadClient Script 
Make a script include call using GlideAjax and check in that Script include if a user is part of group or not and return the response accordingly and based on the response setReadOnly on that field

Other way is using the Display BR and scratchpad