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

Question

Question

Is it possible to create a Laserfiche group with Workflow?

asked on June 21, 2016 Show version history

I would like to create Laserfiche group by using workflow , I imagine using workflow sdk script.

But cannot see how to do it, I see I can maybe create an account but cannot find for the group.

 

it is an avante version so no Laserfiche directory server.

0 0

Answer

SELECTED ANSWER
replied on June 21, 2016

I am not sure if it is possible using workflow sdk but it is definitely possible using LF SDK.  In your Laserfiche.RepositoryAccess.dll there is a AccountInfo Class that takes care of users and groups. in your workflow script you could add LF SDK as reference.

GroupInfo GI = new GroupInfo();
GI.Name = "New Group";
GI.Session = mySess;
GI.Save();

 

1 0
replied on June 21, 2016

thanks,

I make it work by using this script base from yours

GroupInfo GI = new GroupInfo();
GI.Name = "NewGroup";
GI.Session = RASession;
// GI.Session = mySess;            
GI.Save();

 

0 0

Replies

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

Sign in to reply to this post.