Search Results csi_i_version_labels_h
Overview
CSI_I_VERSION_LABELS_H is a table in the CSI (Install Base) product module of Oracle E-Business Suite, available in both 12.1.1 and 12.2.2. The object is documented as "Instance Version Labels History" and is owned by the CSI schema with a VALID status. Its purpose is to preserve the full historical record of changes made to instance version labels maintained by the Install Base application. Where CSI_I_VERSION_LABELS holds the current definition of a version label, CSI_I_VERSION_LABELS_H captures each prior and subsequent state of that label as it is created, modified, or retired.
From a Data Vault modeling perspective, the FK structure suggests that this table behaves as a link, connecting version label records to the transactions that altered them. Each row represents an auditable event rather than a static attribute set, which is characteristic of a link or transactional history construct.
Key Information Stored
The table contains 54 documented columns. The most significant are:
- VERSION_LABEL_HISTORY_ID — the surrogate primary key defined by the CSI_I_VERSION_LABELS_H_PK constraint, uniquely identifying each history record.
- VERSION_LABEL_ID — foreign key to CSI_I_VERSION_LABELS, linking the history row back to the parent label definition.
- TRANSACTION_ID — foreign key to CSI_TRANSACTIONS, identifying the transaction that produced the change.
- OLD_VERSION_LABEL / NEW_VERSION_LABEL — the label value before and after the change.
- OLD_DESCRIPTION / NEW_DESCRIPTION — descriptive text before and after.
- OLD_DATE_TIME_STAMP / NEW_DATE_TIME_STAMP — temporal markers for the version state.
- OLD_ACTIVE_START_DATE / NEW_ACTIVE_START_DATE and OLD_ACTIVE_END_DATE / NEW_ACTIVE_END_DATE — the effective-dating window of the label before and after.
- OLD_CONTEXT / NEW_CONTEXT — contextual metadata attached to the label.
- OLD_ATTRIBUTE1–15 / NEW_ATTRIBUTE1–15 — the DFF (Descriptive Flexfield) segments preserved on both sides of the change.
- SECURITY_GROUP_ID — references FND_SECURITY_GROUPS for multi-org style data segregation.
- OBJECT_VERSION_NUMBER — used by Oracle's optimistic locking framework.
- MIGRATED_FLAG and FULL_DUMP_FLAG — indicate migration and snapshot status.
Two unique indexes are documented: CSI_I_VERSION_LABELS_H_U01 on VERSION_LABEL_HISTORY_ID and CSI_I_VERSION_LABELS_H_U02 on (TRANSACTION_ID, VERSION_LABEL_ID). The latter is the strongest business-key candidate since it enforces one history entry per label per transaction. Standard audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) are also present.
Common Use Cases and Queries
Typical usage centers on auditing and reconstructing the evolution of version labels over time. A common pattern retrieves the change history for a specific label:
- SELECT h.VERSION_LABEL_HISTORY_ID, h.OLD_VERSION_LABEL, h.NEW_VERSION_LABEL, h.OLD_DATE_TIME_STAMP, h.NEW_DATE_TIME_STAMP, t.TRANSACTION_ID FROM csi.csi_i_version_labels_h h JOIN csi.csi_transactions t ON h.TRANSACTION_ID = t.TRANSACTION_ID WHERE h.VERSION_LABEL_ID = :label_id ORDER BY h.CREATION_DATE;
- Tracing which transaction last changed a label by joining on TRANSACTION_ID and filtering the maximum CREATION_DATE.
- Reporting on labels active within a period using the OLD/NEW_ACTIVE_START_DATE and OLD/NEW_ACTIVE_END_DATE pairs.
- Reconciling DFF attribute changes by comparing OLD_ATTRIBUTE[n] against NEW_ATTRIBUTE[n] for n = 1..15.
Related Objects
The following objects are most significant in relation to this table, based on documented FK and PK relationships:
- CSI_I_VERSION_LABELS — parent label table, joined on CSI_I_VERSION_LABELS_H.VERSION_LABEL_ID = CSI_I_VERSION_LABELS.VERSION_LABEL_ID.
- CSI_TRANSACTIONS — source of change transactions, joined on TRANSACTION_ID.
- FND_SECURITY_GROUPS — referenced via SECURITY_GROUP_ID for data access control.
- CSI_I_VERSION_LABELS_H_PK — primary key constraint on VERSION_LABEL_HISTORY_ID.
- CSI_I_VERSION_LABELS_H_U01 and CSI_I_VERSION_LABELS_H_U02 — unique indexes enforcing uniqueness of history rows and label/transaction combinations.
These relationships make the table a central audit reference for any analysis of Install Base version label lifecycle activity.
-
Table: CSI_I_VERSION_LABELS_H
12.2.2
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_I_VERSION_LABELS_H, object_name:CSI_I_VERSION_LABELS_H, status:VALID, product: CSI - Install Base , description: Instance Version Labels History. , implementation_dba_data: CSI.CSI_I_VERSION_LABELS_H ,
-
Table: CSI_I_VERSION_LABELS_H
12.1.1
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_I_VERSION_LABELS_H, object_name:CSI_I_VERSION_LABELS_H, status:VALID, product: CSI - Install Base , description: Instance Version Labels History. , implementation_dba_data: CSI.CSI_I_VERSION_LABELS_H ,
-
SYNONYM: APPS.CSI_I_VERSION_LABELS_H
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSI_I_VERSION_LABELS_H, status:VALID,
-
SYNONYM: APPS.CSI_I_VERSION_LABELS_H
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSI_I_VERSION_LABELS_H, status:VALID,
-
VIEW: CSI.CSI_I_VERSION_LABELS_H#
12.2.2
owner:CSI, object_type:VIEW, object_name:CSI_I_VERSION_LABELS_H#, status:VALID,
-
Table: CSI_I_VERSION_LABELS
12.1.1
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_I_VERSION_LABELS, object_name:CSI_I_VERSION_LABELS, status:VALID, product: CSI - Install Base , description: Instance Version Labels. , implementation_dba_data: CSI.CSI_I_VERSION_LABELS ,
-
Table: CSI_I_VERSION_LABELS
12.2.2
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_I_VERSION_LABELS, object_name:CSI_I_VERSION_LABELS, status:VALID, product: CSI - Install Base , description: Instance Version Labels. , implementation_dba_data: CSI.CSI_I_VERSION_LABELS ,
-
VIEW: CSI.CSI_I_VERSION_LABELS_H#
12.2.2
-
Table: CSI_TRANSACTIONS
12.1.1
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_TRANSACTIONS, object_name:CSI_TRANSACTIONS, status:VALID, product: CSI - Install Base , description: Installed Base transaction log. , implementation_dba_data: CSI.CSI_TRANSACTIONS ,
-
Table: CSI_TRANSACTIONS
12.2.2
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_TRANSACTIONS, object_name:CSI_TRANSACTIONS, status:VALID, product: CSI - Install Base , description: Installed Base transaction log. , implementation_dba_data: CSI.CSI_TRANSACTIONS ,
-
PACKAGE BODY: APPS.CSI_I_VERSION_LABELS_H_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_I_VERSION_LABELS_H_PKG, status:VALID,
-
PACKAGE BODY: APPS.CSI_I_VERSION_LABELS_H_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_I_VERSION_LABELS_H_PKG, status:VALID,
-
PACKAGE BODY: APPS.CSI_TXN_HISTORY_PURGE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_TXN_HISTORY_PURGE_PVT, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.CSI_TXN_HISTORY_PURGE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_TXN_HISTORY_PURGE_PVT, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.CSI_I_VERSION_LABELS_H_PKG SQL Statements
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.CSI_I_VERSION_LABELS_H_PKG SQL Statements
12.2.2
-
12.1.1 DBA Data
12.1.1
-
TABLE: CSI.CSI_I_VERSION_LABELS_H
12.2.2
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_I_VERSION_LABELS_H, object_name:CSI_I_VERSION_LABELS_H, status:VALID,
-
PACKAGE BODY: APPS.CSI_ITEM_INSTANCE_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_ITEM_INSTANCE_GRP, status:VALID,
-
VIEW: APPS.CSI_INST_TRANSACTIONS_V
12.2.2
-
VIEW: APPS.CSI_INST_TRANSACTIONS_V
12.1.1
-
PACKAGE BODY: APPS.CSI_ITEM_INSTANCE_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_ITEM_INSTANCE_GRP, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
TABLE: CSI.CSI_I_VERSION_LABELS_H
12.1.1
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_I_VERSION_LABELS_H, object_name:CSI_I_VERSION_LABELS_H, status:VALID,
-
PACKAGE BODY: APPS.CSI_DIAGNOSTICS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_DIAGNOSTICS_PKG, status:VALID,
-
PACKAGE BODY: APPS.CSI_DIAGNOSTICS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_DIAGNOSTICS_PKG, status:VALID,
-
PACKAGE BODY: APPS.CSI_ITEM_INSTANCE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_ITEM_INSTANCE_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSI_ITEM_INSTANCE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_ITEM_INSTANCE_PVT, status:VALID,
-
VIEW: APPS.CSI_INST_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INST_TRANSACTIONS_V, object_name:CSI_INST_TRANSACTIONS_V, status:VALID,
-
VIEW: APPS.CSI_INST_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INST_TRANSACTIONS_V, object_name:CSI_INST_TRANSACTIONS_V, status:VALID,
-
View: CSI_INST_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INST_TRANSACTIONS_V, object_name:CSI_INST_TRANSACTIONS_V, status:VALID, product: CSI - Install Base , description: Instance Transactions view. , implementation_dba_data: APPS.CSI_INST_TRANSACTIONS_V ,
-
View: CSI_INST_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INST_TRANSACTIONS_V, object_name:CSI_INST_TRANSACTIONS_V, status:VALID, product: CSI - Install Base , description: Instance Transactions view. , implementation_dba_data: APPS.CSI_INST_TRANSACTIONS_V ,
-
APPS.CSI_JAVA_INTERFACE_PKG SQL Statements
12.2.2
-
APPS.CSI_JAVA_INTERFACE_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CSI_I_VERSION_LABELS_H_PKG
12.1.1
-
PACKAGE BODY: APPS.CSI_I_VERSION_LABELS_H_PKG
12.2.2
-
APPS.CSI_TXN_HISTORY_PURGE_PVT dependencies on CSI_I_VERSION_LABELS_H
12.1.1
-
APPS.CSI_I_VERSION_LABELS_H_PKG dependencies on CSI_I_VERSION_LABELS_H
12.2.2
-
APPS.CSI_ITEM_INSTANCE_GRP dependencies on CSI_I_VERSION_LABELS_H
12.1.1
-
APPS.CSI_I_VERSION_LABELS_H_PKG dependencies on CSI_I_VERSION_LABELS_H
12.1.1
-
APPS.CSI_ITEM_INSTANCE_PVT dependencies on CSI_I_VERSION_LABELS_H
12.1.1
-
APPS.CSI_ITEM_INSTANCE_PVT dependencies on CSI_I_VERSION_LABELS_H
12.2.2