Ok … getting an error with Add Data Row that I don’t understand why I’m getting it as it doesn’t match what my arguments in Studio are showing. This is the error:
So my problem is the Add Data Row activity. This is how it is defined:
I’m using the DataRow and DataTable input arguments. This is what variables are currrently available:
As seen above, dataRow is a Data Row and dt_MatchWorkItems is a Data Table.
This is where I’m really confused. When I go into the Debug output frame and open up the message for running the Add Data Row activity I see this:
Look at the Arguments block … Why is the DataTable argument showing as null and not a Data Table when dt_MatchWorkItems is a Data Table ?
Is it because dt_MatchWorkItems is empty ?
What I’m basically doing is filtering a DT I passed in looking for specific rows whose columns match a simple check on values. If I find a matching row, I want to copy the entire row into the new DT and when done, pass that DT out for further processing.