Hi there,
[Details: vro 6.0.2 build: 2700137 ]
I have this below code to save the launched worflow parameters.
var wfToken = workflowToLaunch.execute(workflowParameters);
Following are the outputs of launched workflow:
1. dbUpdated (boolean)
2. errorOutput (string)
3. uuid (string)
I am trying to get the values from wfToken variable using following code:
var outputs = wfToken.getOutputParameters();
The issue is that only dbUpdated and uuid are showing up where as errorOutput is null. I can see in the launched workflow logs that the errorOutput has a value but it shows null when I try to get it using below method. Please help.
System.log ("+++++++++++++++++++++++" + outputs.get("uuid"))
System.log ("+++++++++++++++++++++++" + outputs.get("errorOutput"))
System.log ("+++++++++++++++++++++++" + outputs.get("dbUpdated"))
Thank you,
Ritu