You are viewing limited content. For full access, please sign in.

Question

Question

sdk script to create a Weblink user in Workflow

asked on November 26, 2015

Hi,

Does anyone perhaps have an SDK Script I can use in workflow to create a user if the user doesn't exist and assign a password?

Thanks

Gert

0 0

Answer

SELECTED ANSWER
replied on November 30, 2015

Workflow 9.1 or higher:

            UserInfo UI = new UserInfo();
            UI.Name = "CreatedbyWF";
            UI.Password = "blah";
            UI.Session = RASession;
            UI.Save();

 

1 0

Replies

replied on December 8, 2015

Thanks Miruna, 

We were able to use this perfectly and made a few adjustments for more features. 

 

Thanks

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.