CZ_INIT_PARAMS
Table to store initialization parameters to launch a configurator runtime session.
Details
-
Schema: FUSION
-
Object owner: CZ
-
Object type: TABLE
-
Tablespace: Default
Primary Key
| Name | Columns |
|---|---|
|
CZ_INIT_PARAMS_PK |
PARAMETER_ID |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| PARAMETER_ID | NUMBER | Yes | Identifier for initialization parameter record/entity. | ||
| OBJECT_VERSION_NUMBER | NUMBER | 9 | Yes | Used to implement optimistic locking. This number is incremented every time that the row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row since it was queried. | |
| CALLING_APP_CODE | VARCHAR2 | 1000 | Yes | Calling Application short name. | |
| CALLING_APP_ID | NUMBER | Calling Application Id. | |||
| HEADER | CLOB | Header information about quote/order/cart in JSON string format. | |||
| LINE | CLOB | Yes | Information about quote/order/cart line in JSON string format. | ||
| CUSTOM_PARAMETERS | CLOB | Custom parameters to pass to configurator in JSON array name/value pair format. | |||
| MANUAL_PRICE_ADJUSTMENT | CLOB | Manual price adjustment in JSON string format. | |||
| ERROR_MESSAGE_TEXT | CLOB | Error message text. | |||
| EXPIRED_FLAG | VARCHAR2 | 1 | If 'Y' then session is marked as expired, otherwise it's not expired. | ||
| ADDITIONAL_PARAMETERS | CLOB | Name/value pair of runtime processing parameters in a JSON string format | |||
| CURRENCY_CODE | VARCHAR2 | 15 | Abbreviation that identifies the currency to be used to price the items in the configuration. No value implies base currency will be used at runtime to price items. | ||
| DELETED_FLAG | NUMBER | Yes | This flag indicates the logical deletion of the row. The Non-Zero value represents deleted state and 0 represents not-deleted state. A user controlled background purge process will physically delete the orphaned rows with the Non-Zero flag value. | ||
| CREATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who created the row. | |
| CREATION_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the creation of the row. | ||
| LAST_UPDATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who last updated the row. | |
| LAST_UPDATE_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the last update of the row. | ||
| LAST_UPDATE_LOGIN | VARCHAR2 | 32 | Who column: indicates the session login associated to the user who last updated the row. |
Foreign Keys
| Table | Foreign Table | Foreign Key Column |
|---|---|---|
| cz_config_headers | cz_init_params | INIT_PARAMETER_ID |
Indexes
| Index | Uniqueness | Tablespace | Columns |
|---|---|---|---|
| CZ_INIT_PARAMS_U1 | Unique | Default | PARAMETER_ID |