Versions Compared

Key

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

...

For authenticated requests, connection routing must be configured for the given URI. If no routing is configured, the web client will make an unauthenticated call. Refer to the connection routing documentation for detailed configuration steps.

...

Code Block
languagejs
let log = context.getLogger();
let masterDataTable = context.getMasterDataTable("masterDataKey", 0, 25);
log.info("Master data table title: " + masterDataTable.title());
let masterDataRow = masterDataTable.rows().getContent()[0];
log.info("Master data row title: " + masterDataRow.title());
log.info("Master data row cell 1 value: " + masterDataRow.cells()[0].value());
log.info("Master data row cell 2 value: " + masterDataRow.cells()[1].value());

...