Search Results system_name
Overview
The APPS.CSI_BIS_TXN_DTLS_V view is a reporting and integration object within the Oracle E-Business Suite Install Base (CSI) module. It is documented in ETRM as a business intelligence extract created specifically for the Oracle IT – GSI (Global Single Instance) initiative, exposing installation transaction details in a flattened structure suitable for downstream analytics, data warehousing, and cross-module reporting.
The view consolidates transaction header information (source transaction identifiers and types), transaction line details (item, quantity, serial, lot, and instance attributes), and system information (system name and number). By joining these related CSI entities into a single accessible row format, it spares report and integration developers from reconstructing the normalized relationship between transaction lines, sub-types and systems manually. This is particularly relevant in Oracle EBS 12.1.1 and 12.2.2, where Install Base transaction processing remains central to the lifecycle of tracked and non-tracked instances.
Underlying Base Objects
The view definition joins four documented objects, each of which is a view or synonym owned by APPS:
- CSI_T_TXN_LINE_DETAILS (SYNONYM): provides line-level transaction details.
- CSI_T_TRANSACTION_LINES (SYNONYM): supplies transaction header context, including SOURCE_TRANSACTION_ID, SOURCE_TRANSACTION_TABLE and SOURCE_TRANSACTION_TYPE_ID.
- CSI_TXN_SUB_TYPES (VIEW): is joined on TRANSACTION_TYPE_ID and SUB_TYPE_ID to resolve the transaction type name and description.
- CSI_SYSTEMS_VL (VIEW): is outer-joined (via SYSTEM_ID) so system name and system number appear even if the system reference is absent.
The ETRM metadata confirms all four referenced objects are valid in the APPS schema. Their combination defines the transactional grain of the view: one row per transaction line detail.
Key Columns
The most frequently referenced columns include:
- SOURCE_TRANSACTION_ID, SOURCE_TRANSACTION_TABLE, SOURCE_TRANSACTION_TYPE_ID — trace the originating source transaction; the user's search term "system_name" typically appears alongside these when identifying the system that generated or received the transaction.
- SYSTEM_ID, SYSTEM_NAME, SYSTEM_NUMBER — from CSI_SYSTEMS_VL; SYSTEM_NAME is the descriptive identifier most commonly filtered or grouped.
- TRANSACTION_TYPE_NAME, TRANSACTION_TYPE_DESCRIPTION — human-readable transaction classification.
- INVENTORY_ITEM_ID, INV_ORGANIZATION_ID, SERIAL_NUMBER, LOT_NUMBER, QUANTITY, UNIT_OF_MEASURE — item and quantity context.
- PROCESSING_STATUS, ERROR_CODE, ERROR_EXPLANATION — indicate whether the transaction succeeded and, if not, the failure reason.
This column set supports both transaction auditing and exception reporting.
Common Use Cases and Queries
Typical scenarios include extracting installation transactions for a specific system, reconciling failures in the Install Base interface, and feeding a data warehouse. A representative query restricted by system name is:
SELECT SOURCE_TRANSACTION_ID,
SYSTEM_NAME,
TRANSACTION_TYPE_NAME,
SERIAL_NUMBER,
QUANTITY,
PROCESSING_STATUS,
ERROR_EXPLANATION
FROM APPS.CSI_BIS_TXN_DTLS_V
WHERE SYSTEM_NAME = :p_system_name
AND PROCESSING_STATUS = 'ERROR';
Aggregate-style reporting groups rows by transaction type and system:
SELECT SYSTEM_NAME, TRANSACTION_TYPE_NAME, COUNT(*) FROM APPS.CSI_BIS_TXN_DTLS_V GROUP BY SYSTEM_NAME, TRANSACTION_TYPE_NAME;
Because the view is read-only and defined over transactional base tables, longer-running queries should be bound by date or transaction identifiers where possible. It is intended for reporting and integration consumption rather than for direct DML.
-
View: CSI_BIS_TXN_DTLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_BIS_TXN_DTLS_V, object_name:CSI_BIS_TXN_DTLS_V, status:VALID, product: CSI - Install Base , description: View created for the Oracle IT - GSI , implementation_dba_data: APPS.CSI_BIS_TXN_DTLS_V ,
-
View: CSI_BIS_TXN_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_BIS_TXN_DTLS_V, object_name:CSI_BIS_TXN_DTLS_V, status:VALID, product: CSI - Install Base , description: View created for the Oracle IT - GSI , implementation_dba_data: APPS.CSI_BIS_TXN_DTLS_V ,
-
Lookup Type: CSI_OA_PROD_QUICK_SEARCH_ITEMS
12.1.1
product: CSI - Install Base , meaning: CSI_OA_PROD_QUICK_SEARCH_ITEMS , description: Attribute list for Product Quick Search ,
-
View: CSI_INSTANCE_SEARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INSTANCE_SEARCH_V, object_name:CSI_INSTANCE_SEARCH_V, status:VALID, product: CSI - Install Base , description: Instance details view for Instance search. , implementation_dba_data: APPS.CSI_INSTANCE_SEARCH_V ,
-
Lookup Type: CSI_OA_PROD_QUICK_SEARCH_ITEMS
12.2.2
product: CSI - Install Base , meaning: CSI_OA_PROD_QUICK_SEARCH_ITEMS , description: Attribute list for Product Quick Search ,
-
View: CSI_INSTANCE_SEARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INSTANCE_SEARCH_V, object_name:CSI_INSTANCE_SEARCH_V, status:VALID, product: CSI - Install Base , description: Instance details view for Instance search. , implementation_dba_data: APPS.CSI_INSTANCE_SEARCH_V ,
-
View: CSI_INSTANCE_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INSTANCE_DETAILS_V, object_name:CSI_INSTANCE_DETAILS_V, status:VALID, product: CSI - Install Base , description: Instance Details. , implementation_dba_data: APPS.CSI_INSTANCE_DETAILS_V ,
-
View: CSI_INSTANCE_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INSTANCE_DETAILS_V, object_name:CSI_INSTANCE_DETAILS_V, status:VALID, product: CSI - Install Base , description: Instance Details. , implementation_dba_data: APPS.CSI_INSTANCE_DETAILS_V ,
-
View: CSI_INSTALLED_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INSTALLED_BASE_V, object_name:CSI_INSTALLED_BASE_V, status:VALID, product: CSI - Install Base , description: View for the grid in E-Business Center. , implementation_dba_data: APPS.CSI_INSTALLED_BASE_V ,
-
View: CSI_INSTALLED_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INSTALLED_BASE_V, object_name:CSI_INSTALLED_BASE_V, status:VALID, product: CSI - Install Base , description: View for the grid in E-Business Center. , implementation_dba_data: APPS.CSI_INSTALLED_BASE_V ,