Copy Collection

kiss4344

Member
Below error appears when I try to copy row from Source collection to output collection ( Utility - Collection Manipulation; Action: Copy Rows)

Did someone have any resolution? @VJR

Source Collection: Contains fields with values
Output collection: Empty

System Exception : System.ApplicationException: Start Row must not point beyond the end of the collection.
at Utility___Collection_Manipulation.Copy_Rows1(DataTable Source_Collection, Decimal Start_Row, Decimal Number_of_Rows_to_Copy, DataTable& Output_Collection, Boolean& Success, String& Error_Message)
 

gil.silva

Active Member
Hello kiss4344,

Keep in mind that when you use Copy Rows, the 'start row' is the index, which starts in 0.
"Start Row must not point beyond the end of the collection. "
It looks you're trying to copy from an index out of the collection range (e.g collection with 10 rows, index from 0 to 9)
 

Mahmoud Sadeck

New Member
Hello kiss4344,

Keep in mind that when you use Copy Rows, the 'start row' is the index, which starts in 0.
"Start Row must not point beyond the end of the collection. "
It looks you're trying to copy from an index out of the collection range (e.g collection with 10 rows, index from 0 to 9)
Thank you very much.
I had the same problem and I didn't know how to solve it except when I saw your advice
 
Top