Save new data in another table
To save new data in another table use Save new data in another table action.
Available in following events:
Note: Change the values listed in red to match your specific needs.
'********** Save new data in another table ************
set dal_table=dal.Table("AnotherTable")
dal_table.Field1=values("Field1")
dal_table.Field2=values("Field2")
dal_table.Add()
For more information about using Data Access Layer (DAL), see Data Access Layer.