New users created as disabled, disable terminated users

I want new users to be created in a disabled state and terminated users should be disabled.

I want the new user to remain disabled. They will be set as enabled manually by a network admin.

Setup conditional expressions for the Enable Account mapping as follows:

  • All new accounts are created disabled
    WHEN IsInsert
    THEN false

  • Non-active employees are disabled
    WHEN Employment.EmployeeStatusCode != ‘A’
    THEN false

  • Do nothing for all other employees
    WHEN IsUpdate
    THEN Ignore

1 Like