Insert a record into another table
To insert a record into another table use Insert a record into another table action.
Note: Change the values listed in red to match your specific needs.
'********** Insert a record into another table ************
set dal_table=dal.Table("TableName")
dal_table.Field1="Value1"
dal_table.Field2="Value2"
dal_table.Add()
For more information about using Data Access Layer (DAL), see Data Access Layer.