Which IIQ version are you inquiring about?
8.4-p2
Share all details about your problem, including any error messages you may have received.
i have a role called Role A that im manually assigning to an identity and that triggers its creation in an Active Directory. this uses a form that generated an email on the fly during the account creation process.
in my AD Application i’ve created a simple After provisioning rule that is supposed to check if the identity to which i assigned the role has it, and also checks if the mail was correctly provisioned
here is quick sample of the code:
processedIdentity = plan.getIdentity();
usermail = processedIdentity.getEmail(); → this always return null even if the mail was correctly provisioned in the target AD…
and i tried to fin dthe role by either doing processedIdentity.getassignedRoles() or
processedIdentity.hasRole(context.getObjectByName(Bundle.class,“IRIS Users”),false)
both return false.
and if i print out my plan, i cannot find the role, this is an after prov rule so i’m not getting why i can’t find these info
thanks for any help, this is my first post here hope i was clear enough