I have converted the rows into Data table in extract_work_item_data_table.xaml workflow using following statement:
WI_DT.Select(“Type=‘WI5’ AND Status=‘Open’”).CopyToDataTable()
Create an In Argument of type datatable and assign the value Wi_list.You can use for each row and access each row item (or)You need not copy it to datatable.Let it be array of datarows so that you can process each row by incrementing it’s values @s.praachi
I created the OUT Argument WI_List of type Datatable in extract_work_item_data_table.xaml workflow, and printed the count of data table rows in log message.
I am getting length of data row array in extract_work_item_data_table.xaml. Then I am sending this array as OUT argument and receiving its value in variable- WI_Data_Rows (DataRow).
But I am not getting any returned value in this variable, and getting following error: