Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In my Data Load I read values from Quotes and fill them into my Data Source. In the Data Source I get a correct number of rows, however only columns marked as "key" get populated.

Some more details:

  • When I add assign the key to some column, it will Key function to additional DS fields, these fields get populated too; when I remove it, it is blank.
  • I insert the rows with:

    Code Block
    ​targetRows = api.getDatamartRowSet("target")
    targetRows?.addRow(newRow)

    where newRow has all the data.

  • I have only one element where I construct the whole row. So when I log the row content right after .addRow was called I get all the data.
  • But DatamartRowset has only key columns (and some additional system ones).

...