In my config file I have a sheet with name called (Test_Url) I need to use this sheet data table in the process side. For that i took read range activity and gave the data table variable for that sheet in init state but I don’t know how to call this data table in the process side.
You can refer to your Config DataTable by Row and Item, like so: ConfigDT.Rows(0).Item(1).ToString . This would be the first row, second item in the DataTable (either B1’s “URL” or B2’s “abc.com” depending on whether you have headers or not).
You could alternatively refer to your Config as a dictionary. You can loop through each row of the datatable and add it to a dictionary, the datatype I use is Dictionary<String,String>