I have a process that has an excel input as input.
I need to upload each of the excel rows separately as a queue item to the orchestrator.
How can I do it? Thank you
I have a process that has an excel input as input.
I need to upload each of the excel rows separately as a queue item to the orchestrator.
How can I do it? Thank you
You can try with bulk add queue item activity
Yes, but in addition to the table rows, I need to add other data to the queue item, which is not from the input Excel
hi @Marisa_Ontiveros1 ,
Read your excel to a data table. Then use a for each row in datatable. Inside that use add queue item activity.
Let me know if you face any issues
edit: Replace testrow with currentrow
You will try Add queue item or Bulk queue item activity
give this error:
Add Queue Item: Could not determine JSON object type for type System.Data.DataRow.
hello @Marisa_Ontiveros1
you can read excel data by read range workbook activity and then Bulk Add Queue Items activity as shown below
Hope This will help you,
Regards,
Dheerendra Vishwakarma