Prepare the CSV File: Convert your Excel data into a CSV file. Ensure it adheres to predefined column headers or custom headers for the corresponding fields in the queue.
In Orchestrator, go to the Queues page and select the desired queue.
Click on the corresponding More Actions button and then select Upload Items.
Browse and select the CSV file you prepared.
Ensure that the file meets the required formatting rules.
Choose Upload Strategy:
Process All Independently: Each item is processed individually and added to the queue if successful. You can download a list of items that failed processing.
All or Nothing: Items are only added if all of them are successfully processed.
Enable Dynamic Typing (if needed): This allows Orchestrator to interpret string values as integers or booleans to match the schema definition.
Complete the Upload: After selecting the strategy, click Upload to add the items to the queue.
If you have to code it in dispatcher, follow these steps:
Follow this logic to split datatable in 15000 rows per iteration and add. 15000 rows is the limitation of Add Bulk Queue Item Activity.
Use Add bulk queue item activity,
when you use this it wont add reference, to add reference in excel add one more column, column name should be Reference. and copy paste the data that you want set as the reference.
Hey @lucky7
I think the best approach is batch processing rather than adding each item one by one. You can split the data into smaller batches, for example, 500–1000 records at a time, and use Bulk Add Queue Items
pass read range output to bulk add queue item activity
run execution.
Note: if excel having column as Reference as fine if not add one column and set column name Reference and copy the values which you want to see in queue before starting the executions