IsInsert Constant

IsInsert is a constant that can be used in conditional expressions to determine if the user record is new and will be inserted (provisioned).

Here are a few examples of IsInsert being used:

Insert a new user into a specific org unit using the Container mapping
When IsInsert
 
Then OU=New
If the user is being inserted, then the user will be created in the New org unit
 
Insert a new active user into a specific org unit using the Container mapping
When IsInsert && Employment.EmployeeStatusCode == 'A'
Then OU=New,OU=Active
If the user is being inserted and the employee is active, then the user will be created in the New > Active org unit
 
Insert a new terminated user into a specific org unit using the Container mapping
When IsInsert && Employment.EmployeeStatusCode == 'T'
Then OU=New,OU=Terminated
If the user is being inserted and the employee is terminated, then the user will be created in the New > Terminated org unit