UI Navigation Model table. This table is present to support any future needs of multiple navigation models per UI.
Details
-
Schema: FUSION
-
Object owner: CZ
-
Object type: TABLE
-
Tablespace: SYSTEM
Primary Key
Name | Columns |
---|---|
CZ_UI_NAV_MODEL_STEPS_B_PK |
STEP_ID, START_MODEL_VERSION, UI_NAV_MODEL_ID |
Columns
Name | Datatype | Length | Precision | Not-null | Comments |
---|---|---|---|---|---|
STEP_ID | NUMBER | 18 | Yes | System generated unique navigation model step identifier. | |
UI_NAV_MODEL_ID | NUMBER | 18 | Yes | Identifier of the associated UI Navigation Model. | |
UI_ID | NUMBER | 18 | Yes | Identifier of the associated UI. | |
START_MODEL_VERSION | NUMBER | 18 | Yes | Indicates the version from which this step record will be effective. | |
END_MODEL_VERSION | NUMBER | 18 | Indicates the version from which this step record will be ineffective. The NULL value indicates this record has no end date. | ||
MODEL_ID | NUMBER | 18 | Yes | Identifier of the Model this navigation model step belongs to. | |
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. | |
UI_ITEM_ID | NUMBER | 18 | Yes | Associated UI Item identifier. | |
REFERENCE_MODEL_ID | NUMBER | 18 | FK to reference model id, when the nav step refers to child ui | ||
PARENT_STEP_ID | NUMBER | 18 | Identifier of the parent step id. NULL Parent step id value indicates the root step. | ||
HIER_SEQ_NBR | NUMBER | 38 | Hierarchical sequence number. | ||
LINEAR_SEQ_NBR | NUMBER | 38 | Linear sequence number. | ||
MODEL_NODE_PATH | VARCHAR2 | 1000 | absolute model node path of corresponding model node | ||
UI_EDITING_FLAG | VARCHAR2 | 1 | if NULL or 'N' then this UI Item is generated bu UI Gen/UI Refresh and it was not edited in CME otherwise it was edited in CME | ||
DELETED_FLAG | NUMBER | 18 | Yes | This flag indicates the logical deletion of the row. The value Non-Zero represents deleted state and 0 represents not-deleted state. A user controlled background purge process will physically delete the rows with this flag value Non-Zero. | |
CREATION_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the creation of the row. | ||
LAST_UPDATE_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the last update of the row. | ||
CREATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who created 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. |
Foreign Keys
Table | Foreign Table | Foreign Key Column |
---|---|---|
CZ_UI_NAV_MODEL_STEPS_B | cz_models | MODEL_ID |
cz_ui_nav_model_steps_tl | cz_ui_nav_model_steps_b | STEP_ID, START_MODEL_VERSION, UI_NAV_MODEL_ID |
Indexes
Index | Uniqueness | Tablespace | Columns |
---|---|---|---|
CZ_UI_NAV_MODEL_STEPS_B_N1 | Non Unique | Default | DELETED_FLAG, MODEL_ID, UI_ID, UI_NAV_MODEL_ID, PARENT_STEP_ID, START_MODEL_VERSION, END_MODEL_VERSION |
CZ_UI_NAV_MODEL_STEPS_B_N2 | Non Unique | Default | PARENT_STEP_ID, HIER_SEQ_NBR, START_MODEL_VERSION, END_MODEL_VERSION |
CZ_UI_NAV_MODEL_STEPS_B_U1 | Unique | Default | START_MODEL_VERSION, STEP_ID |
CZ_UI_NAV_MODEL_STEPS_B_U2 | Unique | Default | STEP_ID, START_MODEL_VERSION, UI_NAV_MODEL_ID |
CZ_UI_NAV_MODEL_STEPS_B_U3 | Unique | Default | UI_NAV_MODEL_ID, STEP_ID, START_MODEL_VERSION, UI_ID, MODEL_ID |