Article
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> Disclaimer: As with everything else at Cool Solutions, this content is definitely not supported by Novell (so don't even think of calling Support if you try something and it blows up).
It was contributed by a community member and is published "as is." It seems to have worked for at least one person, and might work for you. But please be sure to test, test, test before you do anything drastic with it.
Related Articles
User Comments
- Be the first to comment! To leave a comment you need to Login or Register
- 3096 reads


0