Group Managers should be able to edit fields on groups records and should be able to add/edit member
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi,
Group Managers should be able to edit fields on groups records and should be able to add/edit member in the groups without consuming ITIL license.
Please suggest the best approach to achieve this.
Thanks.
7 REPLIES 7
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @shikhakhann
Use this code. It will work.
A.Create a Write ACL on the sys_user_group table.
Condition: Use the condition
Manager is Dynamic (Me)
OR
Add a ACL script like
current.manager == gs.getUserID();
B. Create ,write record-level ACLs on the sys_user_grmember table.
ACL Sctipt :
answer = fn_check();
function fn_check()
{
if (current.group.manager == gs.getUserID())
return true;
else
return false;
}
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 weeks ago
I tried step point B by creating acl on group member table but it still doesn't show the edit button to managers on the related list to add group members to a group
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @shikhakhann
Use this code. It will work.
A.Create a Write ACL on the sys_user_group table.
Condition: Use the condition
Manager is Dynamic (Me)
OR
Add a ACL script like
current.manager == gs.getUserID();
B. Create ,write record-level ACLs on the sys_user_grmember table.
ACL Sctipt :
answer = fn_check();
function fn_check()
{
if (current.group.manager == gs.getUserID())
return true;
else
return false;
}
