CZ_MODELS

A row of this table represents a Configurator Model Entity.

Details

  • Schema: FUSION

  • Object owner: CZ

  • Object type: TABLE

  • Tablespace: SYSTEM

Primary Key

Name Columns

CZ_MODELS_PK

MODEL_ID

Columns

Name Datatype Length Precision Not-null Comments
MODEL_ID NUMBER 18 Yes Indicates the system generated unique identifier of the Configurator Model object.
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.
NAME VARCHAR2 255 Yes Indicates the unique name of the Configurator Model. The name of an item based Configurator model will be the item number.
PIM_ITEM_KEY VARCHAR2 50 Indicates the unique identifier of the Item associated with the Configurator Model. The null value indicates that the Configurator Model is a Supplemental Structure only model.
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.
DESCRIPTION VARCHAR2 1000 Description of the configurator model.
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_uis cz_models MODEL_ID
cz_ui_navigation_models cz_models MODEL_ID
cz_ui_hints_b cz_models MODEL_ID
cz_model_nodes_b cz_models MODEL_ID
cz_model_nodes_b cz_models REFERENCE_ID
cz_rules cz_models MODEL_ID
cz_connectables cz_models MODEL_ID
cz_ui_hint_templ_param_vals cz_models MODEL_ID
cz_ui_items_b cz_models MODEL_ID
cz_dcn_model_events cz_models MODEL_ID
cz_dcn_ui_events cz_models MODEL_ID
cz_ui_images cz_models MODEL_ID
cz_ui_item_templ_param_vals_b cz_models MODEL_ID
cz_ui_nav_model_steps_b cz_models MODEL_ID
cz_suppl_attr_values cz_models MODEL_ID

Indexes

Index Uniqueness Tablespace Columns
CZ_MODELS_N1 Non Unique Default TO_NUMBER(SUBSTR("PIM_ITEM_KEY", 1, INSTR("PIM_ITEM_KEY", ':') - 1)), TO_NUMBER(SUBSTR("PIM_ITEM_KEY", INSTR("PIM_ITEM_KEY", ':') + 1))
CZ_MODELS_N2 Non Unique Default UPPER("NAME")
CZ_MODELS_N3 Non Unique Default DELETED_FLAG, NVL("PIM_ITEM_KEY", 'NULL')
CZ_MODELS_U1 Unique Default MODEL_ID
CZ_MODELS_U2 Unique Default NAME, DELETED_FLAG, PIM_ITEM_KEY
CZ_MODELS_U3 Unique Default DECODE("PIM_ITEM_KEY", null, TO_CHAR("MODEL_ID"), "PIM_ITEM_KEY"), DELETED_FLAG