Skip to main content

Load Named Table

Loads a persistent Named Table from the platform into memory for use in subsequent table activities.

Category: Named Tables & Rules Engine · Group: Tables · Activity name: LoadNamedTable

The LoadNamedTable activity in the designer

Example

outputVariable = LoadNamedTable("<tableName>", as="<as>")

Inputs

NameTypeRequiredDefaultDescription
Table NamestringYesThe name of the persistent Named Table to load.
Store AsstringOptional: store the table under a different name in memory.

Outputs

NameTypeDescription
outputVariablejsonStores {tableName, columns: [...], rows: [...]} — the full loaded rows as a binding. Access individual rows via {{ output.rows[0].column }}, or feed the rows collection into filter(...), map(...), sortBy(...), etc. The rows live in the runner's in-memory bindings; Temporal history only stores a count-only preview.