Dears,
I have an issue that, I want to recall the argument. I already define it in a workflow. But I need to use it in another workflow in the same package.
Is there any idea how to get the text from workflow to another workflow? Thanks in advance.
Dears,
I have an issue that, I want to recall the argument. I already define it in a workflow. But I need to use it in another workflow in the same package.
Is there any idea how to get the text from workflow to another workflow? Thanks in advance.
You should consider your workflows as functions using Arguments as inputs and outputs. These Arguments need to be visible to the respected Workflow in order to be accepted.
Let me give you a simple example of 2 workflows passing one Argument form the first to the second:
Hope this will clarify on how in/out Arguments are working.
You can send values from one workflow to another using Arguments. To do that you can try the following:
In the filteredDataSeq.xaml, create an argument out_TaxID in the arguments pane and assign it with a value.
Now get back to your invoke workflow file activity where you invoked the filteredDataSeq.xaml file and click on the Import Arguments button. Now you can see that the argument out_TaxID is imported and in the Value column create a new variable(ctrl+k), say tax_id and make sure its scope is the entire flowchart/sequence that you have used.
Create a new workflow say workflow2.xaml by using the invoke file activity and click on the Edit Arguments button and create a new argument, say in_TaxID and in the Value column, provide the previously created variable tax_id.
In workflow2.xaml create an argument in_TaxID(same name used in the previous step) in the arguments pane. Make sure the Type is same everywhere.
Now you can use the in_TaxID argument inside your