Queue Item v Process

Hi All,

Im trying to send Invoice Number, Total and Date to Orchestrator.


However, this is what is being sent to Orchestrator Queues.
image

What seems to be the problem?

1 Like

Could you please double check what you have provided as ItemInformation in your Add queue item activity?

Hi @jogayon001

In your Add Queue Item activity, check the values you are passing to the queue under ItemInformation property. Looks like you need to enter Invoice Number, Total and date, But you have entered something else :slight_smile:

In ItemInformation property, add three parameters in the name you want to show in Orchestrator. Then pass the values to those from the transactionItem datarow

To pass the values in Process.xaml
try below code
In_TransactionItem(“[Invoice Number]”).toString - Make sure you provide the appropriate name under double quotes
In_TransactionItem(“Total”).ToString - Make sure you provide the appropriate name under double quotes
In_TransactionItem(“Date”).ToString - Make sure you provide the appropriate name under double quotes

Let know whether it helps

1 Like

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