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

Example
outputVariable = LoadNamedTable("<tableName>", as="<as>")
Inputs
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| Table Name | string | Yes | The name of the persistent Named Table to load. | |
| Store As | string | Optional: store the table under a different name in memory. |
Outputs
| Name | Type | Description |
|---|---|---|
| outputVariable | json | Stores {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. |