I have a string array that I want to apply to a column so that array item one goes in row one, item two goes in row two, and so on.
I could loop through them and do a SetItem but I was hoping for dot notation that would work in this code:
DWObject ldwo
ls_colname = "col" + String(ll_idx)
ldwo = lds_import.Object.__get_attribute(ls_colname, True)
ldwo.??? = ls_ColumnArray
SetItem requires determining the datatype of the column and converting the data to the correct type which slows it down.
ldwo = dw_1.Object.__get_attribute(ls_colname, True)
ldwo.Primary = ls_coldata