Hi all,
I want to create a business rule to send an approval before adding/deleting an User to a distribution group for the self service webinterface.
They should only create distribution groups an no security groups.
They are working in only a specific OU, where the groups are listed.
I've created a businnes rule to send a approval before User is added with a pshell script
$approvers = @(
"%managedBy%")
$Context.SubmitForApproval($approvers, $False, $False, $False, $False)
In the webinterface the user is able to add a user, but no approval is sent.
Where is my mistake?