- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2023 02:32 AM
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
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2023 02:37 AM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2023 02:37 AM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2023 02:42 AM
In ui policy mention in condition assignment group this one means and set ui policy action fields read only
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2023 02:43 AM
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