When provisioning a user account, a password is required for enabling accounts. For this reason we ask that you set up the password mapping.
This mapping is only used during provisioning, and never during reprovisioning or de-provisioning.
Example You want a default password that matches your password policy.
GenerateRandomPassword(10,true,true,true,true)
Person.LastName + 'Welcome123!'
Person.LastName + Person.SSN.Substring(Person.SSN.Length - 4, 4)
Password Never Expires
When provisioning a user account, you can set the password never expires attribute.
If the result of the expression is true, then Password Never Expires is set to true and if the result of the expression is false, then Password Never Expires is set to false.
This mapping is only used during provisioning, and never during reprovisioning or de-provisioning.
Example You want all executive employees provisioned with the Password Never Expires set to true.
Employment.WorkerType== "EXEC"
Employment.EmployeeTypeCode == "EXEC"
Comments
0 comments
Please sign in to leave a comment.