
It’s more than 15 Columns.
How can i do that without using multiple assign?
Hi @iplinsky,
There are three activities to populate queue items in a queue in UiPath Studio. The one which you have tried is Add Queue Item.
Bulk Add Queue Items activity is what you are looking for
https://docs.uipath.com/lang-ru/activities/docs/bulk-add-queue-items
The difference is that Add Queue Item requires your Item Information in form of item information (requires you to manually assign every column as you show in your screenshot) where as the Bulk Add Queue Items activity takes your datatable as an input. All column names will then be reflected as shown in your Orchestrator screenshot. (Key:Value pairs)
The third activity is for long running workflows so you can ignore that - Add Queue Item And Get Reference
You can also decide how the queue is populated, either AllOrNothing (will send all rows in your datatable in one go) or ProcessAllIndependently (this will send one row per call and iterate through your datatable)
Good to know details if you want to use Reference and Deadline columns in Bulk Add Queue Items activity
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.