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'
or
2 Likes