TableAction.InsertRows
TableAction.InsertRows(table as table, rowsToInsert as table) as action
Creates an action that inserts rowsToInsert into table. The action returns a table containing the inserted rows as they appear in table after the action executes. Target-specific default values are used for the columns in table that are not specified in rowsToInsert. The function raises an evaluation error if table is not updatable or if rowsToInsert is not compatible with table. The action raises an execution error if the operation fails.
NOTE: table may be left in a partially updated state if an execution error occurs.
Show: