Converting Queue into datatable

Hi,

I would like to build datatable for the following scenario.

  1. Using Get transaction i will be fetched the queue item.

  2. My Queue Item will have a single row of data.

  3. Now i want to convert my queue item into datatable.

How can i do that?

@Palaniyappan

2 Likes

How is your row of data structured?

As a single string, json string, individual values?

as a json string.

Ok so you can use the below:
Assign Datatable = JsonConvert.DeserializeObject(jsonString);

1 Like

Here you go with an xaml
GetAllQueueItems.xaml (7.9 KB)

Cheers @monish06

3 Likes

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