CZ_CONFIG_HEADERS

A row of this table represents a configuration.

Details

  • Schema: FUSION

  • Object owner: CZ

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

CZ_CONFIG_HEADERS_PK

HEADER_ID, REVISION_NUMBER

Columns

Name Datatype Length Precision Not-null Comments
HEADER_ID NUMBER 18 Yes System generated unique identifier for the configuration.
REVISION_NUMBER NUMBER 18 Yes Generated by Configurator to indicate the revision of a configuration
INVENTORY_ITEM_ID NUMBER 18 Yes Item ID of the root inventory model item
ORGANIZATION_ID NUMBER 18 Yes Organization ID of the inventory item
SESSION_EFFECTIVE_DATE TIMESTAMP Yes Calling application provided session date for the configuration
VALID_CONFIGURATION_FLAG VARCHAR2 1 Boolean('Y'/'N') indicating whether a configuration is valid or not.
SESSION_DATA CLOB Opaque configurator session data information
NAME VARCHAR2 255 Yes Generated / Entered by user when saving a configuration.
DESCRIPTION VARCHAR2 1000 User entered description for the configuration
CALLING_APP_ID NUMBER 18 Yes ID of the calling application
MODEL_ID NUMBER 18 Indicates the ID of the Configurator Model, will be null for configuration that does not have an associated configurator model. FK to CZ_MODELS
INIT_PARAMETER_ID NUMBER 18 Identifier of the configuration session initialization parameters.
CONFIG_STATE VARCHAR2 30 Configuration status, indicating if a configuration is finished, applicable only to the configurations created with the HTTP POST method of the configurations REST APIs.
MODEL_HASHCODE VARCHAR2 100 Hash code of the corresponding model tree. It is populated only for interactive REST configurations.
RECORDED_ACTIONS CLOB Recorded CRC actions. It is populated only for interactive REST configurations.
COMPRESSED_SESSION_DATA BLOB Compressed opaque configurator session data information.
DELETED_FLAG NUMBER 18 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.
CREATION_DATE TIMESTAMP Yes Who column: indicates the date and time of the creation of the row.
CREATED_BY VARCHAR2 64 Yes Who column: indicates the user who created the row.
LAST_UPDATE_DATE TIMESTAMP Yes Who column: indicates the date and time of the last update of the row.
LAST_UPDATED_BY VARCHAR2 64 Yes Who column: indicates the user who last updated the row.
LAST_UPDATE_LOGIN VARCHAR2 32 Who column: indicates the session login associated to the user who last updated the row.
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.

Foreign Keys

Table Foreign Table Foreign Key Column
CZ_CONFIG_HEADERS cz_init_params INIT_PARAMETER_ID
cz_config_messages cz_config_headers HEADER_ID, REVISION_NUMBER
cz_config_line_attrs cz_config_headers HEADER_ID, REVISION_NUMBER
cz_config_lines cz_config_headers HEADER_ID, REVISION_NUMBER

Indexes

Index Uniqueness Tablespace Columns
CZ_CONFIG_HEADERS_N1 Non Unique Default NAME
CZ_CONFIG_HEADERS_N2 Non Unique Default INVENTORY_ITEM_ID, ORGANIZATION_ID
CZ_CONFIG_HEADERS_N3 Non Unique Default TO_CHAR("HEADER_ID") || '_' || TO_CHAR("REVISION_NUMBER")
CZ_CONFIG_HEADERS_U1 Unique Default HEADER_ID, REVISION_NUMBER