Quick Expressions

Select multiple employees by employee number
Employment.EmployeeNumber.OneOf("001111,002222,003333")
Enter each employee number, separated by a comma into the parentheses
 
Select multiple jobs by job code
Job.JobCode.OneOf("AAA,BBB,CCC")
Enter each job code, separated by a comma into the parentheses
 
Set the Enable Account mapping to true for Active employees and false for Terminated employees
Employment.EmployeeStatusCode == 'A'
This expression will return true for Active employees and false for everybody else. A true result keeps the account active, and a false result disables the account. 
 
Select a single employees by employee number
Employment.EmployeeNumber == "001111"
Enter the employee number, remember to use a double equals (==) 
 
Select multiple values into the Proxy Addresses mapping
'SMTP:' + Person.EmailAddress + ';SMTP:' +Person.EmailAddressAlternate
Enter each value separated by a semicolon (;). This example uses string concatenation to build the multi-value string.
 
Select multiple values into the Proxy Addresses mapping
$'SMTP:{Person.EmailAddress};SMTP:{Person.EmailAddressAlternate}'
Enter each value separated by a semicolon (;). This example uses string interpolation to build the multi-value string.