In my RPA project, I have two independent Invoke workflow activities with two independent Sequences.
I am trying to get sourceFilepath from Workflow 1 and pass it in the Workflow 2.
But it seems that sourceFilePath value is not accessible outside the first workflow.
I am not sure how to use arguments in this type of scenario, may be i am missing something.
As far as I know, it is easy to pass a value from a children workflow to another one by below steps.
1.Add an out argument in children workflow 1.
2.Add an in argument in children workflow 2.
3.Assign the out argument of children workflow 1 to the value in workflow1.
4.Assign a variable to the out argument in main workflow
5.Assign the in argument of children workflow 2 to variable in main workflow.
6.Use the in argument in workflow 2.