Identity Mapping
  • 08 May 2024
  • 1 Minute to read
  • Dark
    Light
  • PDF

Identity Mapping

  • Dark
    Light
  • PDF

Article summary

To map Identities:

  1. Click Identities > Identities Mapping

  2. Click Add. Add User Attribute screen appears.

  3. Select user attributes to map and click ADD.
    For example, the First name.

  4. Select User Profile Attributes or Expression from the drop-down list.

  5. The list of corresponding screen attributes will be displayed for mapping.
    For example: Here we are mapping the Username with Username.

  6. Click Save.

CSV

Identity mapping can be performed through CSV as well.

  1. Click CSV.

  2. Select User Profile Attributes or Expression from the drop-down list.

  3.  Click Save.

Expression example: 

For creating a unique username for Vendor User in CI:

function getVal()

{

var vendorName=USER.vendorName;

if (vendorName.length() > 5)

vndName = vendorName.substring(0, 5);

else

vndName = vendorName;

var searchFilter = “\”VendorName=\” \’” + vendorName + “\’”;

var vendorUsrID = USER.getLatestValue("VendorUserID", searchFilter)

if(vendorUsrID == null)

vendorUsrID = 1;

else

vendorUsrID = PasrseInt(vendorUsrID) +1;

var newUserID="VD"+vndName+vendorUsrID;

return newUserID;

}


Was this article helpful?