- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-10-2023 11:09 PM
The status of the change should only be changed by the member of the assignment group and the rest should not be changed until they are assigned to their group. After change is created and assignment group is assigned then if any one want to edit change request it should allow only that assignment group members.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-11-2023 05:48 AM
Only user who have "security_admin" can give "security_admin" to other user. To give that role also they should be elevated first.
Bharath Chintala
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-10-2023 11:51 PM
Create a write ACL on assignment group field of change request , with below code:
answer=false;
if(current.assignment_group!='' && gs.getUser().isMemberOf(current.assignment_group))
{
answer=true;
}
else if(current.assignment_group=='')
{
answer=true;
}
Please mark the answer correct/helpful accordingly.
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-11-2023 12:28 AM
I am unable to see new option to create new ACL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-11-2023 12:28 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-11-2023 12:33 AM
@Ktr you need security admin role for that and you need to elevate priviliges before creating/editing ACLs
Raghav
MVP 2023