Within the table form, you define a table as insertable by selecting the Allow Inserts tick-box. which allows an ODBC application to attempt an INSERT on the table.
In order for the INSERT to be successful, the table must, in general, have a format that will allow a single COBOL data record to be populated and written into the COBOL data file. To create the underlying COBOL data record based on the information provided in the INSERT statement, there are a number of rules that must be adhered to; Refer to Rules for Insertable Tables for a full list of rules.
This synthesis is accomplished through various, sometimes subtle, means. The most obvious method is default values for columns or data items - see Defining Custom Data Types. More subtle methods are those based on making table filters and record type filters true by setting appropriate values from condition-names into their conditional variables in the data record - see Defining Record Types and Defining Table Filters.
Essentially, the rules for insertable tables must guarantee that the Relativity DBMS can derive a value for every data item in the inserted data record in the event of partial information provided in the column values specified by the INSERT statement.
Relativity also allows SQL DELETE statements, but only if the table is marked as an insertable table.