Group manager is not able to remove members from the group
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2024 03:39 AM
Group manager is not able to remove group members from the group and also he is able to see edit button. while clicking the edit button able to see slash bucket but after save user are not removing from the group.
Can anyone help me in this issue.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2024 10:19 AM - edited 05-06-2024 10:26 AM
Hi @Darshana2 ,
Try Below ACL Script with no role
Create Delete and Write ACL on table level (‘sys_user_grmember’)
check advanced
in script write below
if(typeof parent != 'undefined' && parent.manager == gs.getUserID()){
answer = true; //Allow access if user has 'user_admin' role or is group manager
}else{
answer = false;
}
I also checked for your problem I got similar solution for that
I hope this helps you!
Please mark my answer correct and helpful if this works for you
Thanks and Regards
Sarthak