/
createTableFromProductExtension
createTableFromProductExtension
def pxTableName = "Product_Costs" def pxAttrs = ["ProductID": "sku", "AvgCosts": "attribute1", "Supplier": "attribute3"] def inMemoryTableName = "TableAttrs" def fields = pxAttrs.values() def tableContext = api.getTableContext() tableContext.createTableFromProductExtension(inMemoryTableName, pxTableName, fields) def resultIterator = api.stream("PX", null, Filter.equal("name", pxTableName)) if (resultIterator) { tableContext.loadRows(inMemoryTableName, resultIterator) } api.trace("Tables", null, tableContext.printTablesDefinitions("%")) api.trace("Tables 1 Count", null, tableContext.count(inMemoryTableName))
, multiple selections available,
Related content
printTablesDefinitions
printTablesDefinitions
More like this
How to Add a New Record to Company Parameter
How to Add a New Record to Company Parameter
More like this
Reference (QueryAPI)
Reference (QueryAPI)
More like this
Add JSON Type Company Parameter
Add JSON Type Company Parameter
More like this
How to Format Datamart Query Results
How to Format Datamart Query Results
Read with this
Query a Datamart
Query a Datamart
Read with this
Found an issue in documentation? Write to us.