Only need to display particular assignment groups in assignment group field of change request table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-06-2024 11:54 AM
Hello Everyone,
I need to restrict access to the Change Request form for anyone outside of the specified groups. This restriction applies to Normal, Standard, and Emergency changes. Only the assignment groups listed below should be able to raise change requests or need to display in assignment_group field. Please let me know if you had any idea.
Thanks regards
Praveen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-06-2024 01:07 PM
Hi Praveen,
Try using reference qualifier
Coming to change request creation by only the above groups, then create ACL for write on change request table and check if user belongs to the assignment group then return true in ACL script
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-07-2024 12:32 AM - edited ‎08-07-2024 12:35 AM
Hi @Vignesh21 thanks for your timing! Can you please elaborate ACL conditions and how to check user belongs to the assignment group with detailed screen shorts for my better understanding. Thanks again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-08-2024 10:03 AM
You can use this by creating a property
example:
1. go to sys_properties.list.do
2. create new
isMemberOf() | Returns true if the user is a member of the given group, false otherwise. | Takes either a group sys_id or a group name as an argument. |
You can add this parameter in the filter condition
gs.getUser().getUserByID(current.sys_id).isMemberOf(gs.getProperty('name of your property'))
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-13-2024 11:34 AM
Hi @praveen_rajan ,
If it was helpful please let me know.