문제

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?

도움이 되었습니까?

해결책

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.

다른 팁

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top