Setup Enable User Account rule for all active and on leave employees?

How do I set the Enable User Account rule for all active and also employees on leave?

There are 2 ways to go about it.

Employment.EmployeeStatusCode == 'A' || Employment.EmployeeStatusCode == 'L'

or you can use a more generic expression to catch all status other than terminated status…

Employment.EmployeeStatusCode != 'T'

enable account

or

enable account 2

2 Likes