I have 2 Arguments created in a workflow
WF Name: Uk_Trucks
Arguments: Conditional_value and VAT_AMT
I need to invoke these arguments in other workflow
WF Name: Reg_Invoice
How can i achieve this, without using Invoke_Workflow activity.
Note: I dont want the whole workflow to be invoked. I only want those argument values to be used in other WF
One way you can do this is you can have 2 assets on Orchestrator and use “Set Asset” activity inside your workflow to Set the value for the asset and later you can use those Asset Values as Needed, Without invoking the Workflow.
Yes, You can achive this via Set Asset & Get Asset Activity.
First Create the Asset Name with the 2 Arguments.
WF Name: Uk_Trucks
Arguments: Conditional_value and VAT_AMT
After that in the first Workflow Set the Argument Value with the help of Set Asset Activity and pass those agruments or variable value to set asset activity.
After that in the 2nd workflow you use the Get Asset Activity to get the data of those 2 arguments.