Insert Records into Data Tables
Parameter Configuration
| Parameter | Description |
|---|---|
| Data Table | The data table to query |
| Creator | Record creator, which can be dynamically specified through expressions |
| Validate Form Rules | When enabled, it will validate field rules set in the form when creating records |
| Skip Summary Data Calculation | When enabled, the refresh of summary fields in this table will not be triggered after data insertion |
| Set Field Values | Set field values for creating records, which can be dynamically specified through expressions |
Return Values
| Return Value | Type | Description |
|---|---|---|
| Record | Record | The data of the created record |
Notes
Validate Form Rules: When enabled, form validation rules set in the form will be used when creating records
Skip Summary Data Calculation: When enabled, the refresh of summary fields in this table will not be triggered after data insertion
- Use the automation step Update Lookup Summary Field Values
- Use the script function informat.table.refreshRelationRollup or informat.table.refreshLookupRollup
For list-type fields like
Sub-Object,Relation List, andLookup List, an array type needs to be passed. For example, if the data table structure displayed by the list type is:Field Identifier Field Name Field Type name Name Single Line Text age Age Number The required data structure to pass is:
javascript${ [ { "name":"张三", "age":20 }, { "name":"李四", "age":22} ] }

