It can be used for various purposes. One of them, for example, is registering inquiries for their further processing and statistical purposes.
Autoincrement settings are stored in two tables:
If the record in the Number (sys_number) table exists and the record in the Autoincrement (sys_number_autoincrement) table does not, then it will be created automatically, and the numbering will start with 1. |
In order to create an autoincrement rule, the following criteria must be met: the object, for which you are configuring an autoincrement, must have a field that should be incremented. It must have a String type, and generally, these fields are named as "Number".
If your table does not have this field, please create it: refer to the Creating a Column article for more information.
Autoincrement form fields
Field | Mandatory | Description |
---|---|---|
Maximum digits | Y | The max amount of digits after the prefix. |
Prefix | Y | At least three Latin letters that will be the beginning of every record ID in this table. |
You just created the rule, and you filled in the fields:
So the first record ID will be ABC000001, and the further ones will be ABC000002, ABC000003, and so on.