In RE Framework, how can we get the unique id from get transaction data workflow to process workflow

Hi All,

Stuck at process workflow of RE framework. I need the below unique “Vendor Transaction id” from get transaction data workflow but not getting it any how.

image

I have attached the workflows.
Process.xaml (11.0 KB)
GetTransactionData.xaml (12.0 KB)

Hope I have make it clear.

Regards,
Masood

In the Get Transaction Item Activity, assign the output to out_TransactionItem

Read the vendor id like below -
out_TransactionItem.SpecificContent("WIID").ToString

You can able to read the vendor id only if you added the above WIID while adding transaction item to Queue.

Regards,
Karthik Byggari

Hi Karthik,

Thanks for your response.

I am not using queue from orchestrator. I am trying to achieve it from studio itself.

Regards,
Masood

Then, please make use of arguments to pass the data from one workflow to another workflow.

  1. Create one OUT argument in Get Transaction Item workflow to pass the vendor tax id from Get Transaction workflow to the Main workflow.
  2. Assign it to the variable in the Main workflow (In the Invoke workflow activity of Get Transaction Data, click on Import Arguments and assign to the variable of Main workflow).
  3. Pass it as IN argument to another workflow.

Refer:

Regards,
Karthik Byggari