When executing a WFA workflow from vRO/vCO using the "vCO Package for WFA Integration" the output of the "NetApp WFA Workflow execution" task will include a parameter named "returnWFAParameters". This is a Properties object (meaning it is a series of key->value pairs) which contain any returned values from WFA.
To access them, you can use a script object to access individual properties. For example:
// if you know the name of the WFA return parameter
System.debug("Returned value " + returnWFAParameters.get("someProperty") + " for parameter someProperty");
// if you want to enumerate all of the returned values
for (var key in returnWFAParameters.keys) {
System.debug("Returned parameter " + key + " equals " + returnWFAParameters.get(key));
}
Hope this helps.
Andrew
If this post resolved your issue, please help others by selecting ACCEPT AS SOLUTION or adding a KUDO.