English
English
Appearance
English
English
Appearance
The Create Record node is used to automatically create one or more new records in a specified target table during workflow execution. It is commonly used to generate related data based on trigger record information.

Select the table in which to create records. You can choose any table under the current Base.
Configure the source of values for target table fields. Each mapping contains:
| Configuration | Description |
|---|---|
| Target Field | The field in the target table to write the value to |
| Value Source | Static value or expression/field reference |
Enter a fixed value directly. Suitable for fields that do not need to change dynamically, such as:
Reference the trigger record or other node results using {{}} syntax, for example:
{{trigger.record.customer_name}}Supported context variables include:
{{trigger.record.<field_id>}}: Trigger record field{{node_<node_id>.record.<field_id>}}: Field from a previous node result{{loop.current_data.<field_id>}}: Current iteration data in a loop node| Target Field | Value Source |
|---|---|
| Order Number | {{trigger.record.order_no}} |
| Consignee | {{trigger.record.customer_name}} |
| Status | Static value: Pending Shipment |
| Created Time | {{NOW}} |