Here, there is an output in message box. Where I don’t want column names like, Application and Incomplete.
I just want the output like Hemal and True. Because i want to compare it like, if Incomplete is True then n then move further. But how should I ignore that column header name ?
Use stropselectdt(0)(“Incomplete”) to get the value of first row, column Incomplete.
Whenever you have a datatable, stropselectdt in your case, you can use the indexing operator to access rows - stropselectdt(0), stropselectdt(1), … will give you first row, second row using the row number, zero based.
When you have a DataRow, stropselectdt(0) in this case, you can use again the indexing operator to get the value for a column either by its number (zero based again) or by its name.
stropselectdt(0)(0) or stropselectdt(0)(“Application”) will give you the value of first row, first column, stropselectdt(0)(1) or stropselectdt(0)(“Incomplete”) will give you the value of first row, second column.
why you are using output datatable activity output ? that is just for debugging purpose which converts your datatable output as comma delimited string.
Your Execute Query activity will return a datatable so better to use the values from there.
Like you will get only one result then directly u can get Datatable_name(Row_number)(“ColumnName”)