Calling Arguments using without InvokeWorkflow activity

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

@nidhi.kowalli1

check above threads

@nidhi.kowalli1

You cannot do liek that either separate those two as a different xaml and invoke as needed

or while passing initializa the value and just pass to each workflow if it is not initlaized already can check usign IsNothing(variable)

cheers

1 Like

Hi @nidhi.kowalli1 ,

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.

Activities - Set Asset (uipath.com)

Hope this helps.

Hi @nidhi.kowalli1

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.

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.