Versions Compared

Key

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

this This function will return returns definitions ONLY of only those in-memory tables , which already have some lines loaded into it. I.e. if you only have just defined the table, this function will not show nothinganything.

Code Block
languagegroovy
def tableContext = api.getTableContext()
tableContext.createTableFromProductMaster("P", ["sku", "attribute1"])
def resultIterator = api.stream("P", null)
if (resultIterator) tableContext.loadRows("P", resultIterator)

api.trace("Tables", null,
        tableContext.printTablesDefinitions("%")
)

...