I am trying to extract data from a DT, for column, material code, but while I am trying to write it in typeinto activity but end up getting this error
Where my Output DT is, Transaction_DT and expected result to pick for Transaction 1 is SOLFS001L12P and the value of DT will update on next transaction
You might be getting this error because of the wrong column name or the column might not be there in the specific data table. Can you please check it & confirm?
Could you double check on the datatable that is being used ? What was the datatable used in the Write Line Activity and in the Type Into Activity/For Each Row Activity.
May be the Datatable name is created twice in different scopes or you have passed different datatable variable in the for each or type into activity @Tanzill_Ahsan
Create one string variable EX. ABC
Add all Material code in ABC variable using For each row in Datatable activity (User CurrentRow(“Material_Code”).ToString instead of Transaction_Dt.Rows(0)(“Material_Code”).ToString
User ABC variable in tyeinto activity