Create Table
Creates a new in-memory (transient) table for data processing within the workflow.
Category: Named Tables & Rules Engine · Group: Tables · Activity name: CreateTable

Example
outputVariable = CreateTable("<tableName>", schema={})
Inputs
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| Table Name | string | Yes | Name for the new in-memory table. | |
| Table Schema | object | Column definitions with key column markers. Value: {columns: [{name, isKey}]}. |
Outputs
| Name | Type | Description |
|---|---|---|
| outputVariable | json | Stores table metadata (tableName, columns, rows). |