Search Results csi_transactions
Overview
The CSI_TRANSACTIONS table is the central transaction log for Oracle E-Business Suite's Install Base (CSI) module in versions 12.1.1 and 12.2.2. It functions as an audit trail, recording every significant event or change that occurs to an installed product instance. This includes actions such as installations, updates, movements, merges, and terminations. The table's primary role is to provide a historical, immutable record of all transactional activity, enabling traceability, audit compliance, and support for complex business processes like warranty tracking, service history, and asset lifecycle management. Each record in this table represents a single, discrete transaction applied to the Install Base.
Key Information Stored
The table's structure is designed to capture the essential metadata of a transaction. Its primary key is TRANSACTION_ID, a unique identifier for each logged event. A critical foreign key is TRANSACTION_TYPE_ID, which links to the CSI_TXN_TYPES table to classify the nature of the transaction (e.g., 'CREATE', 'UPDATE', 'MOVE'). While the provided metadata does not list all columns, typical columns in such a transaction log would include timestamps (CREATION_DATE, LAST_UPDATE_DATE), the identifier of the user or concurrent program that initiated the transaction (CREATED_BY, LAST_UPDATED_BY), and references to the source document that triggered the transaction, such as a Work Order or Sales Order number. The core transactional data itself (the before and after state of the instance) is stored in the various history tables that reference CSI_TRANSACTIONS via foreign key.
Common Use Cases and Queries
A primary use case is auditing and reporting on the complete service history of a specific item instance. Support personnel can trace all modifications to diagnose issues or verify configuration changes. Financial and service teams use this data to validate warranty coverage or service contract entitlements based on installation and update dates. A common reporting pattern involves joining CSI_TRANSACTIONS to CSI_ITEM_INSTANCES_H and CSI_TXN_TYPES. For example, to find all update transactions for a specific instance:
- SELECT ct.transaction_id, ctt.name txn_type, cih.instance_number, ct.creation_date
- FROM csi_transactions ct,
- csi_txn_types ctt,
- csi_item_instances_h cih
- WHERE ct.transaction_type_id = ctt.transaction_type_id
- AND cih.transaction_id = ct.transaction_id
- AND cih.instance_id = <INSTANCE_ID>
- AND ctt.name = 'UPDATE'
- ORDER BY ct.creation_date DESC;
Another critical use is troubleshooting failed transactions by joining to the CSI_TXN_ERRORS table to analyze error logs associated with a specific TRANSACTION_ID.
Related Objects
As the foundational transaction log, CSI_TRANSACTIONS is referenced by numerous Install Base history tables, which store the actual changed attribute data for each transaction. Key dependent history tables, as per the foreign key metadata, include:
- CSI_ITEM_INSTANCES_H: Historical changes to item instance core attributes.
- CSI_I_ASSETS_H: Historical changes to associated asset information.
- CSI_I_PARTIES_H: Historical changes to party assignments (e.g., owner, installer).
- CSI_I_ORG_ASSIGNMENTS_H: Historical changes to organization assignments.
- CSI_II_RELATIONSHIPS_H: Historical changes to instance-to-instance relationships.
- CSI_SYSTEMS_H: Historical changes to system (parent instance) definitions.
- CSI_TXN_ERRORS: Logs errors associated with a transaction for debugging.
The table is governed by the CSI_TXN_TYPES lookup table, which defines the valid transaction types. Transactional integrity is maintained through the primary key constraint CSI_TRANSACTIONS_PK.
-
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 ,
-
Table: CSI_ITEM_INSTANCES_H
12.2.2
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_ITEM_INSTANCES_H, object_name:CSI_ITEM_INSTANCES_H, status:VALID, product: CSI - Install Base , description: Item Instance History. , implementation_dba_data: CSI.CSI_ITEM_INSTANCES_H ,
-
Table: CSI_II_RELATIONSHIPS_H
12.1.1
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_II_RELATIONSHIPS_H, object_name:CSI_II_RELATIONSHIPS_H, status:VALID, product: CSI - Install Base , description: Instance to Instance Relationships' History. , implementation_dba_data: CSI.CSI_II_RELATIONSHIPS_H ,
-
Table: CSI_TXN_ERRORS
12.1.1
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_TXN_ERRORS, object_name:CSI_TXN_ERRORS, status:VALID, product: CSI - Install Base , description: Installed Base transaction errors. , implementation_dba_data: CSI.CSI_TXN_ERRORS ,
-
Table: CSI_IEA_VALUES_H
12.1.1
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_IEA_VALUES_H, object_name:CSI_IEA_VALUES_H, status:VALID, product: CSI - Install Base , description: Instance Extended Attribute Values History. , implementation_dba_data: CSI.CSI_IEA_VALUES_H ,
-
Table: CSI_TXN_TYPES
12.1.1
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_TXN_TYPES, object_name:CSI_TXN_TYPES, status:VALID, product: CSI - Install Base , description: Installed Base Source Transaction List. , implementation_dba_data: CSI.CSI_TXN_TYPES ,
-
Table: CSI_SYSTEMS_H
12.1.1
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_SYSTEMS_H, object_name:CSI_SYSTEMS_H, status:VALID, product: CSI - Install Base , description: System details History. , implementation_dba_data: CSI.CSI_SYSTEMS_H ,
-
Table: CSI_I_PARTIES_H
12.1.1
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_I_PARTIES_H, object_name:CSI_I_PARTIES_H, status:VALID, product: CSI - Install Base , description: Instance - Party Association History. , implementation_dba_data: CSI.CSI_I_PARTIES_H ,
-
Table: CSI_I_ORG_ASSIGNMENTS_H
12.1.1
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_I_ORG_ASSIGNMENTS_H, object_name:CSI_I_ORG_ASSIGNMENTS_H, status:VALID, product: CSI - Install Base , description: Instance Organization Associations History. , implementation_dba_data: CSI.CSI_I_ORG_ASSIGNMENTS_H ,
-
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_ASSETS_H
12.2.2
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_I_ASSETS_H, object_name:CSI_I_ASSETS_H, status:VALID, product: CSI - Install Base , description: Instance Asset association History. , implementation_dba_data: CSI.CSI_I_ASSETS_H ,
-
Table: CSI_I_PARTIES_H
12.2.2
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_I_PARTIES_H, object_name:CSI_I_PARTIES_H, status:VALID, product: CSI - Install Base , description: Instance - Party Association History. , implementation_dba_data: CSI.CSI_I_PARTIES_H ,
-
Table: CSI_I_ORG_ASSIGNMENTS_H
12.2.2
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_I_ORG_ASSIGNMENTS_H, object_name:CSI_I_ORG_ASSIGNMENTS_H, status:VALID, product: CSI - Install Base , description: Instance Organization Associations History. , implementation_dba_data: CSI.CSI_I_ORG_ASSIGNMENTS_H ,
-
Table: CSI_IEA_VALUES_H
12.2.2
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_IEA_VALUES_H, object_name:CSI_IEA_VALUES_H, status:VALID, product: CSI - Install Base , description: Instance Extended Attribute Values History. , implementation_dba_data: CSI.CSI_IEA_VALUES_H ,
-
Table: CSI_TXN_TYPES
12.2.2
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_TXN_TYPES, object_name:CSI_TXN_TYPES, status:VALID, product: CSI - Install Base , description: Installed Base Source Transaction List. , implementation_dba_data: CSI.CSI_TXN_TYPES ,
-
Table: CSI_SYSTEMS_H
12.2.2
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_SYSTEMS_H, object_name:CSI_SYSTEMS_H, status:VALID, product: CSI - Install Base , description: System details History. , implementation_dba_data: CSI.CSI_SYSTEMS_H ,
-
Table: CSI_I_PRICING_ATTRIBS_H
12.1.1
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_I_PRICING_ATTRIBS_H, object_name:CSI_I_PRICING_ATTRIBS_H, status:VALID, product: CSI - Install Base , description: Instance Pricing Attributes History. , implementation_dba_data: CSI.CSI_I_PRICING_ATTRIBS_H ,
-
Table: CSI_I_ASSETS_H
12.1.1
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_I_ASSETS_H, object_name:CSI_I_ASSETS_H, status:VALID, product: CSI - Install Base , description: Instance Asset association History. , implementation_dba_data: CSI.CSI_I_ASSETS_H ,
-
Table: CSI_I_PRICING_ATTRIBS_H
12.2.2
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_I_PRICING_ATTRIBS_H, object_name:CSI_I_PRICING_ATTRIBS_H, status:VALID, product: CSI - Install Base , description: Instance Pricing Attributes History. , implementation_dba_data: CSI.CSI_I_PRICING_ATTRIBS_H ,
-
Table: CSI_IP_ACCOUNTS_H
12.2.2
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_IP_ACCOUNTS_H, object_name:CSI_IP_ACCOUNTS_H, status:VALID, product: CSI - Install Base , description: Instance to Accounts (Party Accounts) association History. , implementation_dba_data: CSI.CSI_IP_ACCOUNTS_H ,
-
Table: CSI_TXN_ERRORS
12.2.2
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_TXN_ERRORS, object_name:CSI_TXN_ERRORS, status:VALID, product: CSI - Install Base , description: Installed Base transaction errors. , implementation_dba_data: CSI.CSI_TXN_ERRORS ,
-
Table: CSI_ITEM_INSTANCES_H
12.1.1
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_ITEM_INSTANCES_H, object_name:CSI_ITEM_INSTANCES_H, status:VALID, product: CSI - Install Base , description: Item Instance History. , implementation_dba_data: CSI.CSI_ITEM_INSTANCES_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 ,
-
Table: CSI_II_RELATIONSHIPS_H
12.2.2
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_II_RELATIONSHIPS_H, object_name:CSI_II_RELATIONSHIPS_H, status:VALID, product: CSI - Install Base , description: Instance to Instance Relationships' History. , implementation_dba_data: CSI.CSI_II_RELATIONSHIPS_H ,
-
Table: CSI_IP_ACCOUNTS_H
12.1.1
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_IP_ACCOUNTS_H, object_name:CSI_IP_ACCOUNTS_H, status:VALID, product: CSI - Install Base , description: Instance to Accounts (Party Accounts) association History. , implementation_dba_data: CSI.CSI_IP_ACCOUNTS_H ,
-
View: CSI_LINE_INST_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_LINE_INST_DETAILS_V, object_name:CSI_LINE_INST_DETAILS_V, status:VALID, product: CSI - Install Base , description: Backward Compatible : Installation details ( View for table CS_LINE_INST_DETAILS) , implementation_dba_data: APPS.CSI_LINE_INST_DETAILS_V ,
-
View: CSI_LINE_INST_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_LINE_INST_DETAILS_V, object_name:CSI_LINE_INST_DETAILS_V, status:VALID, product: CSI - Install Base , description: Backward Compatible : Installation details ( View for table CS_LINE_INST_DETAILS) , implementation_dba_data: APPS.CSI_LINE_INST_DETAILS_V ,
-
View: CSI_TXN_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_TXN_DETAILS_V, object_name:CSI_TXN_DETAILS_V, status:VALID, product: CSI - Install Base , description: Instance Transaction Details View , implementation_dba_data: APPS.CSI_TXN_DETAILS_V ,
-
View: CSI_TXN_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_TXN_DETAILS_V, object_name:CSI_TXN_DETAILS_V, status:VALID, product: CSI - Install Base , description: Instance Transaction Details View , implementation_dba_data: APPS.CSI_TXN_DETAILS_V ,
-
View: CSI_SYSTEMS_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_SYSTEMS_TRANSACTIONS_V, object_name:CSI_SYSTEMS_TRANSACTIONS_V, status:VALID, product: CSI - Install Base , description: Systems transactions View , implementation_dba_data: APPS.CSI_SYSTEMS_TRANSACTIONS_V ,
-
View: CSI_SYSTEMS_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_SYSTEMS_TRANSACTIONS_V, object_name:CSI_SYSTEMS_TRANSACTIONS_V, status:VALID, product: CSI - Install Base , description: Systems transactions View , implementation_dba_data: APPS.CSI_SYSTEMS_TRANSACTIONS_V ,
-
View: CSI_COUNTER_READINGS_BCV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_COUNTER_READINGS_BCV_V, object_name:CSI_COUNTER_READINGS_BCV_V, status:VALID, product: CSI - Install Base , description: Backward compatible view for CS_CTR_COUNTER_VALUES_V , implementation_dba_data: APPS.CSI_COUNTER_READINGS_BCV_V ,
-
View: CSI_COUNTER_READINGS_BCV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_COUNTER_READINGS_BCV_V, object_name:CSI_COUNTER_READINGS_BCV_V, status:VALID, product: CSI - Install Base , description: Backward compatible view for CS_CTR_COUNTER_VALUES_V , implementation_dba_data: APPS.CSI_COUNTER_READINGS_BCV_V ,
-
View: CSI_INST_TXN_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INST_TXN_DETAILS_V, object_name:CSI_INST_TXN_DETAILS_V, status:VALID, product: CSI - Install Base , description: Details about the transaction performed on an Instance. , implementation_dba_data: APPS.CSI_INST_TXN_DETAILS_V ,
-
View: CSI_INST_TXN_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INST_TXN_DETAILS_V, object_name:CSI_INST_TXN_DETAILS_V, status:VALID, product: CSI - Install Base , description: Details about the transaction performed on an Instance. , implementation_dba_data: APPS.CSI_INST_TXN_DETAILS_V ,
-
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 ,