11-30-2014 06:26 AM
How should the stringlist parameter be passed to Context.StartWorkflow in the proper way? I have tried:
participants=@{Context["participants"]}
participants=@{java.util.Arrays.asList(Context["participants"])}
12-02-2014 07:05 AM
Hello,
If you want to put a list like for instance a NodeVariables["assignees"], You can do this:
Set Context Variable name: participants value: @{new java.util.ArrayList()}
Run Script script: java.util.Collections.addAll(Context["participants"], java.util.Arrays.asList(NodeVariables["assignees"]));
Using Collections.addAll method.
Hope it helps
12-02-2014 10:44 AM
Hello,
12-02-2014 11:41 AM
Can you give me your complete use case?
12-05-2014 09:18 AM
This is an example
01-12-2015 06:44 AM
Hi,
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.