The Zurich release has arrived! Interested in new features and functionalities? Click here for more

Make all fields read only for specific user in form except one

RandiReyna
Tera Contributor

Hello experts,

 

I'm struggling with how to approach a requirement I need. On an Auth Pack form on CAM, I need the IS Security Manager to only be able to edit one field and the rest read only. Been struggling with UI policy. Any help is greatly appreciated.

 

Thank you!

1 ACCEPTED SOLUTION

Community Alums
Not applicable

Hi @RandiReyna ,

You can  use an Read ACL on that field.

 

 

View solution in original post

6 REPLIES 6

Community Alums
Not applicable

Hi @RandiReyna ,

You can  use an Read ACL on that field.

 

 

RandiReyna
Tera Contributor

Hi @Community Alums ,

 

I was able to make all the fields read only, but now having issues with making work_notes and ISSM field editable. Any pointers?

 

Thanks

Community Alums
Not applicable

what is the condition to set these fields editable? @RandiReyna 



I created a write ACL for the Authorization Package on the ISSM (information system security manager)field
but when I impersonate, the field is not editable.

(var
me = gs.getUserID();
answer = true;
if (gs.hasRole('sn_irm_cont_auth.info_system_sec_manager')) {
answer = (current.getValue('issm') == me) || current.aodr.toString().includes(me);)

}