Friday 15 February 2013

Configuring/Synchronizing new attribute from OIM to OID


  • Extend the OID and OVD schemas with a value: orclSAMAccountName
  • Add the above attributes to the object class: “orclIDXPerson” in OID and OVD schemas
  • Create three basic info user attributes in OIM for the above attribute.
  • Export LDAPUser.xml from MDS
  • Add the following entry to the end of the <entity-attributes> tag:

<attribute name="orclSAMAccountname">
<type>string</type>
<required>false</required>
<attribute-group>Basic</attribute-group>
<searchable>true</searchable>
</attribute>

  • Add the following entry to the end of the <target-fields> tag: 
<field name="orclSAMAccountName">
<type>string</type>
<required>false</required>
</field>
  • Add the following entry to the end of the <attribute-maps> tag:
<attribute-map>
<entity-attribute>orclSAMAccountName</entity-attribute>
<target-field>orclSAMAccountName</target-field>
</attribute-map>
  • Improt LDAPUser.xml to OIM after the changes
  • Create a user in OIM - User created successfully with the new attribute populated in OID

No comments:

Post a Comment