Hello,
We have an approval workflow in which we call several subworkflows as in below picture. (Picture 1)
Our questions are;
- Is it possible to pass workflow variables from one workflow to another?
- Can we pass workflow variable to the subworkflows?
- Can we pass sub-workflow variable to the parent workflows?
Picture 1
You can set the variable scope, when you define a variable (e.g. in a SQL select node) to 3 values:
- Node
- Job
- Public
usually "job" does the trick, for passing variables back to the parent you might need public
Edwin