Is there any way that we can programatically create a Documentum user by using Active Directory information? (I have very little knowledge on ADT and know that it stores user info thats all.)

link|improve this question

64% accept rate
feedback

2 Answers

up vote 2 down vote accepted

In Documentum Administrator you can sync the ActiveDirectory Users by running the Job dm_LDAPSynchronization. This should do.

Hope this helps, Max


edit: You can also create a User using DFC-Methods:

IDfUser newUser = (IDfUser) session.newObject("dm_user");

newUser.setUserName("New User");
newUser.setUserLoginName("newuser");

newUser.setString("user_source","inline password");
newUser.setString("user_password","new_password");

newUser.setDefaultFolder("/newuser",true);

newUser.save();

Instead of putting inline_password as the user_source, you probably can choose LDAP and remove the user_password. This most probably needs more information, but I don't have the DFC Documentation with me at the moment. I could look it up in the evening, but for now this should give you a good point to start.

You could also make a Server Method out of it and assign it to a custom Job.

BUT: I don't think that you can CREATE new LDAP-Users from Documentum...they need to be present in the ActiveDirectory when you import them into Documentum!

Cheers, Max

link|improve this answer
But what if we want only few user requested ,, my point is can we modify it to accept user according to our will – RAJ Jan 24 at 11:44
That is Like can we do changes in the source file(or create a custom job) so that it pick the user from a provided xls sheet, or documnet and populates all the attribute of user into Documnetum – RAJ Jan 24 at 11:54
Please check my edit of the answer above. – Max Jan 24 at 12:27
thanks Max for your help – RAJ Jan 27 at 12:35
hey max one quick question, When you create this method , and you have a session created , how do you use both to run the method in content server – RAJ Feb 3 at 9:01
show 13 more comments
feedback

You can configure LDAP through DA and set all the connection info, user id password and than configure the ldapsync job to do this ,whenever a new user is added into ldap,it will be imported into documentum by that job and deactivated if user is removed from ldap.

Thats the best way to avoid any programming .

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.