A charging property belongs to a chargeable item, a charged item, or a charging notification.
See also the following database tables:
CHARGEABLE_ITEM,
CHARGED_ITEM,
CHARGING_NOTIFICATION.
| Schema Version | 2023.0.2 | |
| Tablespace | COCKPIT_DATA | |
| Partitioned | No | |
The CHARGING_PROPERTY 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 |
|---|---|---|---|---|---|---|
| OID | PK_CHARGING_PROPERTY |
|
The unique identifier of the charging property. It is generated by the SAP CC Cockpit application. | |||
| DTYPE |
|
Indicates if the charging property belongs to the chargeable item, a charged item or a notification | ||||
| DATE_VALUE |
|
The value of the charging property when it is a date | ||||
| NAME |
|
The name of the charging property | ||||
| NUMBER_VALUE |
|
The value of the charging property when it is a number | ||||
| STRING_VALUE |
|
The value of the charging property when it is a string | ||||
| TYPE |
|
The type of the charging property | ||||
| DESCRIPTION |
|
The description of the charging property | ||||
| BOOLEAN_VALUE |
|
The value of the charging property when it is a boolean | ||||
| CHARGEABLEITEM_OID | CHARGEABLE_ITEM (OID)
|
|
The unique identifier of the chargeable item that owns the charging property, when it is owned by a chargeable item | |||
| CHARGEDITEM_OID | CHARGED_ITEM (OID)
|
|
The unique identifier of the charged item that owns the charging property, when it is owned by a charged item | |||
| NOTIFICATION_OID |
|
The unique identifier of the charging notification that owns the charging property, when it is owned by a charging notification |
The database schema defines the following columns. Check the definitions, types, available indexes, and formats:
| Definition | The unique identifier of the charging property. It is generated by the SAP CC Cockpit application. |
| Type | DECIMAL(28), NOT NULL |
| Primary Key | PK_CHARGING_PROPERTY |
| Definition | Indicates if the charging property belongs to the chargeable item, a charged item or a notification |
| Format |
The possible values are:
|
| Type | VARCHAR(31), NOT NULL |
| Definition | The value of the charging property when it is a date |
| Type | TIMESTAMP, NULL |
| Definition | The name of the charging property |
| Type | VARCHAR(256), NOT NULL |
| Definition | The value of the charging property when it is a number |
| Type | DECIMAL(28,6), NULL |
| Definition | The value of the charging property when it is a string |
| Type | VARCHAR(2000), NULL |
| Definition | The type of the charging property |
| Format |
The possible values are:
|
| Type | DECIMAL(10), NULL |
| Definition | The description of the charging property |
| Type | VARCHAR(2000), NULL |
| Definition | The value of the charging property when it is a boolean |
| Type | BOOLEAN, NULL |
| Definition | The unique identifier of the chargeable item that owns the charging property, when it is owned by a chargeable item |
| Type | DECIMAL(28), NULL |
| Definition | The unique identifier of the charged item that owns the charging property, when it is owned by a charged item |
| Type | DECIMAL(28), NULL |
| Definition | The unique identifier of the charging notification that owns the charging property, when it is owned by a charging notification |
| Type | DECIMAL(28), NULL |
See the primary key information:
| Column(s) | OID |
| Tablespace | COCKPIT_INDX |