borismh
(Boris)
January 30, 2020, 2:53pm
1
good afternoon
I would like to upload to orchestrator through queues, that is what I have already done, I returned a json file, but when I return it, it gives me the last value, and I want to return all the data as a table
some help?
Add queue item.zip (28.8 KB)
I attach my workflow just in case
bcorrea
(Bruno Correa)
January 30, 2020, 4:35pm
4
You want to create one transaction with all of that DataTable or one transaction for each row?
1 Like
borismh
(Boris)
January 30, 2020, 4:52pm
5
@bcorrea
for the moment, that the table is a whole transaction
borismh
(Boris)
January 30, 2020, 4:53pm
6
@bcorrea
it seems that the orchestrator is not working right now
bcorrea
(Bruno Correa)
January 30, 2020, 4:53pm
7
if you want the whole table as one transaction, then remove that For Each Row…
megharajky
(Megharaj Yadravi)
January 31, 2020, 7:25am
8
I would suggest instead of uploading complete data-table you can give the excel path into queue.
Still you want to update datatable to queue you can convert datatable to string (using OutputDatatable activity) and add queue item.
(your attached example shows adding queues row by row)