These are expressions that utilize a function to perform some logic on input parameters and return some value.
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:
Employment.DefaultJobTitle("Manager,Sales Rep,System Administrator")
Enter each job code, separated by a comma into the parentheses
Select a single employee 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.PrimaryEmailAddress + ';SMTP:' + Person.SecondaryEmailAddress
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.PrimaryEmailAddress};SMTP:{Person.SecondaryEmailAddress}'
Enter each value separated by a semicolon (;). This example uses string interpolation to build the multi-value string.
Comments
0 comments
Please sign in to leave a comment.