Employee Filter

The Employee Filter us used to specify which employees from UKG Pro to work with.

Example You only want to work with Active employees.

This can be achieved by adding an Employee Filter expression that states to only read Active employees from UKG Pro.

Employment.EmployeeStatusCode == 'A'

Example You only want to work with specific employees based on their employee number.

This can be achieved by adding an Employee Filter expression that states to only read employees from UKG Pro where their employee number matches a list you provide.

Employment.EmployeeNumber.OneOf('001111,002222,003333')

 

Example You only want to work with Active Fulltime employees.

This can be achieved by adding an Employee Filter expression that states to only read Active Fulltime employees from UKG Pro.

Employment.EmployeeStatusCode == 'A' && Employment.FullTimeOrPartTimeCode == 'F'

Example You only want to work with all employees from company ACME.

This can be achieved by adding an Employee Filter expression that states to only read employees where company code is ACME from UKG Pro. 

Employment.CompanyCode == "ACME"

 

Next Auto Provision