IIQ 8.4 dynamic scope

We are on IIQ 8.4 version where have a custom quick link which calls the custom workflow . we have Dynamic scope with allow others and who can member request for configured as follows

Still it is showing the identity in select

do you have a searchable identity attribute called employeeType?

Hi Emanuele,

Thanks for the reply. Yes, we have a searchable identity attribute defined.
And strange thing is dynamic scope and quicklink is working fine on one server but not in another server.

Best Regards,
Pranali

Have you verified if your user has any other dynamic scopes that give them access to other users?

You could create a rule and run this code to reveal all DynamicScopes granted to that user:

    import sailpoint.api.DynamicScopeMatchmaker;
    import sailpoint.object.*;

    String name = "spadmin";

    Identity id = context.getObjectByName(Identity.class, name);
    DynamicScopeMatchmaker matcher = new DynamicScopeMatchmaker(context);
    List rv = matcher.getMatches(id);
    java.util.Collections.sort(rv);

    return rv;