Migrating Users from AD to the ID Vault
Novell Cool Solutions: Tip
|
Digg This -
Slashdot This
Posted: 18 Apr 2007 |
Problem
A Forum reader recently asked:
I'm trying to migrate users from AD to the eDirectory ID Vault. I'd like to use AD Attrib's First Name + Last Name to create the Full Name on the eDirectory side. I can't get this to work - where should I place this in the creation policy?
And here's the reply from Father Ramon ...
Solution
Make sure Full Name is not set to synchronize in the filter. Add the following rule in the Subscriber Creation policy:
<rule>
<description>Generate Full Name</description>
<conditions>
<and>
<if-class-name mode="nocase" op="equal">User</if-class-name>
</and>
</conditions>
<actions>
<do-set-default-attr-value name="Full Name" write-back="false">
<arg-value type="string">
<token-attr name="Given Name"/>
<token-text xml:space="preserve"> </token-text>
<token-attr name="Surname"/>
</arg-value>
</do-set-default-attr-value>
</actions>
</rule>
Novell Cool Solutions (corporate web communities) are produced by WebWise Solutions. www.webwiseone.com

