The SETTING table contains the user settings (aka user preferences) of the SAP CC users for the Cockpit user interface.
The settings relate to the Cockpit launchpad or to a given app.
The possible settings are:
Note that the settings for the user notification management are stored in the NOTIFICATIONSETTING database table.
| Schema Version | 2023.0.2 | |
| Tablespace | COCKPIT_DATA | |
| Partitioned | No | |
The SETTING table is defined by the following columns in your back-end database. See the column details for more information.
| Name | PK | FK | IX | Uses | Used by | Definition |
|---|---|---|---|---|---|---|
| ID | PK_SETTING |
|
The unique identifier of the setting | |||
| CONTAINER |
|
The container of the setting, defining its technical domain of application | ||||
| ITEM |
|
The item of the setting to configure | ||||
| USERLOGIN |
|
The SAP CC user login of the setting. The user is the owner of the setting. | ||||
| VALUE |
|
The value of the setting |
The database schema defines the following columns. Check the definitions, types, available indexes, and formats:
| Definition | The unique identifier of the setting |
| Type | DECIMAL(28), NOT NULL |
| Primary Key | PK_SETTING |
| Definition | The container of the setting, defining its technical domain of application |
| Type | VARCHAR(255), NULL |
| Definition | The item of the setting to configure |
| Type | VARCHAR(255), NULL |
| Definition | The SAP CC user login of the setting. The user is the owner of the setting. |
| Type | VARCHAR(255), NULL |
| Definition | The value of the setting |
| Type | CLOB, NULL |
See the primary key information:
| Column(s) | ID |
| Tablespace | COCKPIT_INDX |