How to add a Data table to the Orchestrator Queue

I am currently facing an issue with adding a DataTable to a Queue in UiPath. Despite searching through the UiPath forum, I haven’t been able to find a suitable solution. If adding a DataTable is not feasible, an alternative approach using a dictionary would also work for my needs.

Thanks in Advance!!!

Hi @Konda_Sai_Charan_Goud

You can use Bulk Add Queue Items acitivty to add the datatable to the queue.

Check below documentation for more information

Regards

@Konda_Sai_Charan_Goud

you cannot add complex type directly…what you can do is you can serialize the datatable and add the serialized strign and then deserialize when needed

basically you need to convert datatable to string for that you can use output table activity and for deserializing you can use generate datatable…and that string can be added to queue

if you want to add each row separately to each queue item then you can use bulk add queue items

cheers

1 Like

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