Cookies are used to collect information about you. Nexus uses this information to give you a better experience of the website (functional) and to count the pages you visit (statistics).
Click OK to give Nexus your consent to use cookies. Read more about Nexus' cookie policy.
Log in to Identity Manager Admin as Administrator.
Manage the option to add a uniqueness check for "Synchronize users from CSV file to Identity Manager"
This section shows how to enable the uniqueness check for theSynchronize users from CSV file to Identity Manageruse case. See the previous section for the Create user add-on CSV use case.
In Identity Manager Admin, go to Home > Script.
Select the scriptUsersScriptOptions.
In the section Uniqueness checkin the script,go to the UsersAddonCSVCheckUniquenessvariable, see the example. By default it is set totrue, that is, there is a uniqueness check done when you synchronize users.
/*
Defines if a uniqueness check will be done during user creation.
Possible options:
* true(default) - User uniqueness check will be done.
* false - User uniqueness check will not be done.
*/
UsersAddonCSVCheckUniqueness = true
If you do not want to have a uniqueness check when you synchronize, setUsersAddonCSVCheckUniquenesstofalse.
ClickSavein the upper left cornerto save the updatedscript (or exit without saving if there are no updates).
Change the unique identifier
You can change the unique identifier if you want to use something else than email.
To see the unique identifier:
In Identity Manager Admin, go to Home > Process Import.
Select the process Create user.
Click the row Check uniqueness.
Click Edit task on the Check uniqueness row (the pen to the right on the row).
In the list of Parameters, you see the parameter name UsersDp_Email and the value EQUALS:${UsersDp_Email} which means that the email is used for the uniqueness check.
The service task that controls this is called Process: Execute Search Task, read more about it here: Process - Standard service tasks in Identity Manager. Normally, the email is what you use for the uniqueness check. But if you, for example, use the Users add-on LDAP, see Create user add-on LDAP, to create users, the uniqueness check is done on a parameter called UsersAddonLDAPDp_ObjectGUID and the value is EQUALS:{UsersAddonLDAPDp_ObjectGUID}.
Technical details
Default value and outcome
Value
Outcome
True (default)
There will be a uniqueness check when creating or synchronizing users from a CSV file.
The unique identifier is email.
If the uniqueness check fails, information is shown that there is already a user with this email. Possibility is given to go back and change the email.
False
There will not be a uniqueness check when creating or synchronizing users via a CSV file.
Users add-on CSV - manage options script
Click here to see the whole manage options script.