- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2023 02:04 AM - edited 05-10-2023 04:40 AM
Hi Team ,
CURRENTLY: Anyone can edit the "CAB Required" and "CAB Date/Time" fields
ISSUE: These fields are used by Change Management Team to add changes that are ready for CAB to the appropriate CAB Schedule and will be used in CAB workbench filter - It is not appropriate for users outside of the Change management team to be able to edit these fields
EXPECTED BEHAVIOUR: Only members of Group "CAB_IT_Change Managers" - should be able to edit these fields
And it should editable for particular this [ CAB_IT_Change Managers" ] Group . How achieve this requirement please steps .
@Community Alums
Please provide solution .
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2023 03:13 AM
Create an Write ACL on Change request table field level
you have to write Acl for each field
In role give snc_internal
check advanced in script write below
if(gs.getUser().isMemberOf('replace sysid of group'){
answer = true;
}else
answer = false;
Bharath Chintala
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2023 05:39 AM
Hi @nameisnani ,
You need to adjust your ACL.
1) Select the field on which you want to apply the ACL.
2) In the script, you must mention the group's name instead of sys_id.
Thanks,
Rakesh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2023 02:28 AM
@nameisnani - We have different options to achieve it. You can make the field readonly for others who are not a member of the group you mentioned.
1. UI Policy
2. Client Script
3. ACL
Thanks & Regards,
Vasanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2023 02:44 AM
Hi @Vasantharajan N thanks for QR ,
Could you please steps for UI Policy or Cilent Script . to make requirment fullfill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2023 03:13 AM
Create an Write ACL on Change request table field level
you have to write Acl for each field
In role give snc_internal
check advanced in script write below
if(gs.getUser().isMemberOf('replace sysid of group'){
answer = true;
}else
answer = false;
Bharath Chintala
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2023 04:00 AM
Hi @BharathChintala thanks for response .
As per your instructions i have tried in my PDI .
snc_internal role is not there .
it is not working as expected ,