How to dynamically call a microflow with a list of arguments

1
Hello, Is it possible to call a microflow (from another microflow) with a number of parameters dynamically using the microflow’s name?   Cheers Adrian
asked
4 answers
2

You can do this via a java action. But without java, there is no such action in microflows.

answered
1

You would need to drop to Java to do this. 

Have a look at Community Commons, there are various actions to execute microflows there that may do what you need.

If not, look at Core.execute. This takes a context, a string with the microflow name, and LinkedHashMap of parameters to pass into the microflow.

Hope this helps!

answered
0

Unfortunately, this isn’t possible on microflow level.

answered
1

Thanks Guys. Java looks like my only choice.

 

Cheers

Adrian

answered