I have a workflow A that reads a .CSV file, processes the data and writes the output to an other .CSV file.
I have a second workflow B in which I want to execute workflow A by passing to it the .CSV input file name and retrieving from it the .CSV output file name.
Can someone guide me how should I construct the relevant parts of both workflows to achieve this?
Try the Call Workflow Service nodes:
Examples:
3 Likes
@Rafal_Xxx you can take a look at this example
1 Like
Thank you, @mlauber71
Can you guide me what the interface for input and output should look like in the workflow A?
Somehow I am missing the understanding of how the wrkfl A knows which value to use as the input.
@Rafal_Xxx in the main workflow there is a path variable being sent to the sub workflow.
The sub workflow can then use this flow variable to load a file.
You can send all sorts of data or other connections between the workflows.
2 Likes
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.