Tuesday, August 4, 2020

How to add custom attribute (UDF i.e., User Defined Field) & add column in Identity warehouse in Sailpoint

How to add custom attribute (UDF i.e., User Defined Field) :

Steps    :

# Login to  Sailpoint IIQ
# Navigate to gear icon    --->    Global settings    --->    Identity Mappings
NOTE : This is the main interface for configuring Identity Attributes
Click the Add New Attribute button on the Identity Attributes page and enter the following:


# Under Source Mappings, select Add Source
  •     Choose Application Attribute
  •     Application: HR System - Employees
  •     Attribute: department
  •     Click Add
        
        
# click on save
# We want to extend the interface to show our new identity attribute    :
  • Configure IdentityIQ to display all Identity Attribute
  • Login to Debug page
  • Navigate to Configuration Objects   --->   UI Configuration
  • You will now see an XML representation of the UIConfig object within IdentityIQ.
  • Search for entry key with the name: identityViewAttributes and add the attribute
  • <entry key="identityViewAttributes" value="name,firstname,lastname,email,manager,department"/>
  • click on save
------------------------------------------**********************-------------------------------------------------

How to add add column in Identity warehouse :

Steps :

# Login to Debug page
  • Navigate to Configuration Objects   --->   UI Configuration
  • Search for identityTableColumns and select Next until you find <entry key="identityTableColumns"> 
  • Add the following two lines to the end of the ColumnConfig entries for identityTableColumns 
  • <ColumnConfig dataIndex="status" headerKey="Status" hideable="true"property="status" sortProperty="status" sortable="true"/><ColumnConfig dataIndex="correlated" headerKey="Authoritative?"hideable="true" property="correlated" sortProperty="correlated" sortable="true"/>
  • click on save
  • Navigate to Identities --> Identity Warehouse and confirm that your new columns show in the UI.

No comments:

Post a Comment

Fetch Members from Workgroup

  import java.util.ArrayList;   import java.util.Iterator;   import java.util.List;   import sailpoint.api.ObjectUtil;   import sailpoint.ob...