Problem in Processing Queue from Orchestrator

I dont see items getting processed in Queue from Orchestrator…
Steps .

  1. Created 2 process (Add Item to Queue) and (Process Transaction)
  2. Items were added to the queue in Orchestrator successfully.
  3. In second process I dont see items in queue executed.

Note: Finding difference between Income and Payments from excel file.

Attached workflow and excel file.

Please help me.

QueueOrch.zip (11.8 KB)

ExcelData.xlsx (9.5 KB)

Hi @shruthi_arali,

In the add queue item you given in the names in double quotes which is not needed you can directly give names.

like instead of “Incomes” you can use Incomes directly using “Incomes” here is creating an issue. Beacause it does not match which transactionItem.specificContent(“Incomes”)

image

to solve this remove “Incomes” and use Incomes in add queue Item Parameter
Regards,
Shiva Karthik

If I remove double quotes getting below error.

image

Hi @shruthi_arali,

You have to remove the double quotes in Name Field not in value, the row(“Incomes”).toString is correct only remove the “” in Name field.

Regards,
Shiva Karthik

Thank u … it is working fine.

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