Extracting data from an infotable. Error: Unable To Convert From .ValueCollection to INFOTABLE.
Hi there, I'm trying to extract a row from the infotable as per the code below.
var table = me.myInfoTable;
var someRow = table.rows[0];
var result = someRow;
After executing the script I'm getting the following error (composer). Why is that? I'm pretty sure I could do it before.

The infotable is not empty. The data can be accessed by addressing field names.
var someName = someRow.someField;
The output is set to an infotable with the appropriate datashape.

