Error in Add data row while adding the variables

Hi, i have a scenario where am unable to add more variables to array row in add data row activity… Am getting the below error…


Plz suggest me the approach…

you need add to collection

hi @Somanath_Somu

you can not pass more than 15 variables in the add datarow

for sample you can see below

For this you can try to assign to different array and then concatenate them and pass it to the add data row.
arr1={name,class}
arr2={sub1,sub2}
arr3=arr1.Concat(arr2).toArray
Pass arr3 in add data row.

we encountered a limitiation by adding more then 16 items. But we can handle by:

new Object(){value1,,,,value16}.Concat(new Object(){value17,.....}).toArray()