we can extend to handle also QI Properties e.g. Reference
But lets keep in mind: The JSON DataTable gerneration will derive the DataColumn DataTypes by checking first row values. This can lead to unwanted datatype calculations.
But combining different approaches, done in projects came out to reliable results
Hi @vijayakumarkj
use build the data table and create a new data table with the columns required
Then for each row of queue items
USe 3 assign activities for reference,Firstname,Last name
then use item.SpecificContent(“Reference”).ToString() similarly for first name and last name… to get the values and use add data row to add these values into the data table.
@Gayathri_Mk It should work by adding individual line item to queue using a loop. I was looking for a LINQ query to get the results in data table and add to Queue via bulk upload. Thank you VJ!