Datatable to DataRow

Hi All,

I am new to this forum and would like to get some help on the online assignments I am trying.

In one assignment, I am asked to extract data from the web portal and store in datatable, which I am able to do. Now it asks me to pass argument to the main project as DataRow for it iterate the transactions.

But I am not knowing how to pass the Datatable to a DataRow argument. Any help would be greatly appreciated.

Thanks in Advance
Sree

@Sreejith_A Check below statement, It will work for you.

DataRow rows = myDataTable.Select()

Where rows is a variable of type array of datarows

  • Use For each row activity with ExtractedDatatable.
  • Invoke the process workflow with row as arguments.
  • Process each row individually.

@Manjuts90 Thanks for the quick reply, It helped me.

1 Like