Question

Is there any way to create 30+ user with same groups and ACL name in one shot?

I have tried using DQL and make script, but even that doesn't run in one shot in Documentum DQL editor.

Does anyone has any simpler way to create users in Documentum aplication?

Was it helpful?

Solution

Use java to loop over some dfc code like this :

        IDfUser dfcUser = (IDfUser) getSession().newObject("dm_user");
        dfcUser.setUserName("username");
        dfcUser.setUserLoginName("username");

        dfcUser.setString("user_source","inline password");
        dfcUser.setString("user_password","somepassword");
        dfcUser.setString("user_os_name","username");
        dfcUser.setString("description","new user description");

also, you could use a tool like Qit : Qit by Qtree

You can develop your own plugins, I am currently developing one to duplicate a user. These plugins will appear on the website soon.

OTHER TIPS

IDQL (idql32.exe) tool which is installed on the Content Server bin folder can execute a file full of DQL commands. Use the GO command to seperate each DQL

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top