Search Results inventory_revision
Overview
The APPS.CSI_T_TXN_LINE_DETAILS_V view is a reporting and integration layer within the Oracle E-Business Suite Install Base (CSI) module. It is defined over the transaction line details table, exposing a horizontally projected set of attributes that describe individual item lines associated with Install Base transactions. In the context of Oracle EBS 12.1.1 and 12.2.2, this view provides a stable, read-oriented interface for downstream consumers such as concurrent programs, OBIEE/BIP reports, and custom integration interfaces that need to resolve transaction line detail records without directly querying the underlying transactional table.
The view is owned by the APPS schema and is documented as VALID. Its metadata entry in the ETRM repository describes it simply as a "View on top of Transaction Line Details CSI_T_TXN_LINE_DETAILS." Because it is a projection-only view, it does not introduce transformation, aggregation, or join logic of its own; it mirrors the column list of the base object in the same order.
Underlying Base Objects
The view is defined over a single documented base object: the synonym CSI_T_TXN_LINE_DETAILS. The synonym resolves at runtime to the corresponding APPS-owned table that stores the transaction line detail rows written by Install Base transaction processing. The base object holds the physical storage for transaction line detail data, while CSI_T_TXN_LINE_DETAILS_V serves as the queryable surface exposed to external consumers.
Because the view carries no WHERE clause, DISTINCT, or join in its documented text, each row in the view corresponds one-to-one with a row in the base object. No filtering on transaction status, organization, or reference status is applied. Callers must therefore apply their own filtering predicates, particularly around INVENTORY_ORGANIZATION_ID and the effective date columns.
Key Columns
- TXN_LINE_DETAIL_ID — Surrogate identifier for the transaction line detail record; the primary reference for the row.
- TRANSACTION_LINE_ID — Foreign reference to the parent transaction line, enabling rollup from detail to line and then to transaction header.
- INVENTORY_ITEM_ID — The inventory item affected by the transaction line.
- INV_ORGANIZATION_ID — The inventory organization in which the transaction line operates.
- INVENTORY_REVISION — The revision of the inventory item carried on the transaction line. This is the column most directly relevant to revision-controlled items and to lookup searches such as "inventory_revision."
- QUANTITY — Quantity associated with the transaction line detail.
- UNIT_OF_MEASURE — Unit of measure in which the quantity is expressed.
- LOCATION_TYPE_CODE / LOCATION_ID — Location classification and the specific location identifier for the line detail.
- INSTANCE_DESCRIPTION — Descriptive text for the instance created or impacted by the transaction.
- CONFIG_INST_HDR_ID, CONFIG_INST_REV_NUM, CONFIG_INST_ITEM_ID, CONFIG_INST_BASELINE_REV_NUM — Configuration instance header, revision number, item, and baseline revision identifying the configured instance structure relevant to the line.
- TARGET_COMMITMENT_DATE — Target commitment date for the transaction line detail.
- ACTIVE_START_DATE / ACTIVE_END_DATE — Effective date range governing the record's active period.
- OBJECT_VERSION_NUMBER — Optimistic locking token used by the framework to detect concurrent updates.
Common Use Cases and Queries
The view is commonly used to report transactional activity against revision-controlled items, to populate interface staging tables for Install Base transactions, and to join transaction line details to item and organization master data. It is frequently combined with CSI item instance tables to reconcile instance creation with transacted inventory revisions.
Sample query listing transaction line details for a specific organization and revision:
SELECT d.txn_line_detail_id,
d.transaction_line_id,
d.inventory_item_id,
d.inv_organization_id,
d.inventory_revision,
d.quantity,
d.unit_of_measure,
d.target_commitment_date
FROM apps.csi_t_txn_line_details_v d
WHERE d.inv_organization_id = :p_org_id
AND d.inventory_revision = :p_revision
AND TRUNC(SYSDATE) BETWEEN NVL(d.active_start_date, TRUNC(SYSDATE))
AND NVL(d.active_end_date, TRUNC(SYSDATE));
A second pattern aggregates transacted quantities by item and revision for a given organization:
SELECT d.inventory_item_id,
d.inventory_revision,
SUM(d.quantity) total_qty
FROM apps.csi_t_txn_line_details_v d
WHERE d.inv_organization_id = :p_org_id
GROUP BY d.inventory_item_id, d.inventory_revision;
Because the view applies no filtering, queries should always qualify by organization and effective dates where transaction currency matters, and use OBJECT_VERSION_NUMBER when the view is used as the source of an update path into the base table.
-
View: CSI_T_TXN_LINE_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_T_TXN_LINE_DETAILS_V, object_name:CSI_T_TXN_LINE_DETAILS_V, status:VALID, product: CSI - Install Base , description: View on top of Transaction Line Details CSI_T_TXN_LINE_DETAILS , implementation_dba_data: APPS.CSI_T_TXN_LINE_DETAILS_V ,
-
View: CSI_T_TXN_LINE_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_T_TXN_LINE_DETAILS_V, object_name:CSI_T_TXN_LINE_DETAILS_V, status:VALID, product: CSI - Install Base , description: View on top of Transaction Line Details CSI_T_TXN_LINE_DETAILS , implementation_dba_data: APPS.CSI_T_TXN_LINE_DETAILS_V ,
-
VIEW: APPS.CSD_SERIAL_NUMBERS_V
12.1.1
-
VIEW: APPS.CSD_SERIAL_NUMBERS_V
12.2.2
-
VIEW: APPS.CSI_T_TXN_LINE_DETAILS_V
12.2.2
-
VIEW: APPS.CSI_T_TXN_LINE_DETAILS_V
12.1.1
-
View: CSD_SERIAL_NUMBERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_SERIAL_NUMBERS_V, object_name:CSD_SERIAL_NUMBERS_V, status:VALID, product: CSD - Depot Repair , description: View that displays all possible serial numbers, from IB, service request, and mtl , implementation_dba_data: APPS.CSD_SERIAL_NUMBERS_V ,
-
View: CSD_SERIAL_NUMBERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_SERIAL_NUMBERS_V, object_name:CSD_SERIAL_NUMBERS_V, status:VALID, product: CSD - Depot Repair , description: View that displays all possible serial numbers, from IB, service request, and mtl , implementation_dba_data: APPS.CSD_SERIAL_NUMBERS_V ,
-
VIEW: CSI.CSI_T_TXN_LINE_DETAILS#
12.2.2
-
VIEW: APPS.CSI_T_TXN_LINE_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_T_TXN_LINE_DETAILS_V, object_name:CSI_T_TXN_LINE_DETAILS_V, status:VALID,
-
VIEW: APPS.CSD_SERIAL_NUMBERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_SERIAL_NUMBERS_V, object_name:CSD_SERIAL_NUMBERS_V, status:VALID,
-
APPS.CSE_DEPLOYMENT_GRP SQL Statements
12.1.1
-
VIEW: APPS.CSI_T_TXN_LINE_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_T_TXN_LINE_DETAILS_V, object_name:CSI_T_TXN_LINE_DETAILS_V, status:VALID,
-
VIEW: APPS.CS_SR_CP_NEW_ACCT_EAM_NM_RG_V
12.1.1
owner:APPS, object_type:VIEW, object_name:CS_SR_CP_NEW_ACCT_EAM_NM_RG_V, status:VALID,
-
APPS.AHL_PRD_PARTS_CHANGE_PVT SQL Statements
12.1.1
-
VIEW: APPS.CSD_SERIAL_NUMBERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_SERIAL_NUMBERS_V, object_name:CSD_SERIAL_NUMBERS_V, status:VALID,
-
VIEW: CSI.CSI_ITEM_INSTANCES#
12.2.2
-
View: OKX_INSTALL_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_INSTALL_ITEMS_V, object_name:OKX_INSTALL_ITEMS_V, status:VALID, product: OKX - Contracts Integration , description: Source View for IB instance line in Oracle Contracts for Lease , implementation_dba_data: APPS.OKX_INSTALL_ITEMS_V ,
-
APPS.AHL_PRD_PARTS_CHANGE_PVT SQL Statements
12.2.2
-
VIEW: APPS.CS_SR_CP_NEW_ACCT_EAM_NM_RG_V
12.2.2
owner:APPS, object_type:VIEW, object_name:CS_SR_CP_NEW_ACCT_EAM_NM_RG_V, status:VALID,
-
View: OKX_INSTALL_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_INSTALL_ITEMS_V, object_name:OKX_INSTALL_ITEMS_V, status:VALID, product: OKX - Contracts Integration , description: Source View for IB instance line in Oracle Contracts for Lease , implementation_dba_data: APPS.OKX_INSTALL_ITEMS_V ,
-
View: CSI_UNIT_INSTANCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_UNIT_INSTANCES_V, object_name:CSI_UNIT_INSTANCES_V, status:VALID, product: CSI - Install Base , description: Instances that are units and are not a components of other instances. , implementation_dba_data: APPS.CSI_UNIT_INSTANCES_V ,
-
View: OKX_ITEM_INSTS_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_ITEM_INSTS_LINES_V, object_name:OKX_ITEM_INSTS_LINES_V, status:VALID, product: OKX - Contracts Integration , description: View on Installed base item instance line of Oracle Lease management lease contract. This line points to an item instance (instance_id ) in IB , implementation_dba_data: APPS.OKX_ITEM_INSTS_LINES_V ,
-
VIEW: APPS.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,
-
VIEW: APPS.OKX_INSTALL_ITEMS_V
12.1.1
-
View: CSI_UNIT_INSTANCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_UNIT_INSTANCES_V, object_name:CSI_UNIT_INSTANCES_V, status:VALID, product: CSI - Install Base , description: Instances that are units and are not a components of other instances. , implementation_dba_data: APPS.CSI_UNIT_INSTANCES_V ,
-
VIEW: APPS.CS_SR_CP_NEW_ACCT_EAM_RG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_CP_NEW_ACCT_EAM_RG_V, object_name:CS_SR_CP_NEW_ACCT_EAM_RG_V, status:VALID,
-
VIEW: APPS.CS_SR_CP_NEW_ACCT_EAM_RG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_CP_NEW_ACCT_EAM_RG_V, object_name:CS_SR_CP_NEW_ACCT_EAM_RG_V, status:VALID,
-
VIEW: CSI.CSI_T_TXN_LINE_DETAILS#
12.2.2
owner:CSI, object_type:VIEW, object_name:CSI_T_TXN_LINE_DETAILS#, status:VALID,
-
VIEW: APPS.CSI_UNIT_INSTANCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_UNIT_INSTANCES_V, object_name:CSI_UNIT_INSTANCES_V, status:VALID,
-
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 ,
-
VIEW: APPS.CSF_M_ITEM_INSTANCES_V
12.2.2
owner:APPS, object_type:VIEW, object_name:CSF_M_ITEM_INSTANCES_V, status:VALID,
-
VIEW: APPS.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,
-
View: OKX_ITEM_INSTS_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_ITEM_INSTS_LINES_V, object_name:OKX_ITEM_INSTS_LINES_V, status:VALID, product: OKX - Contracts Integration , description: View on Installed base item instance line of Oracle Lease management lease contract. This line points to an item instance (instance_id ) in IB , implementation_dba_data: APPS.OKX_ITEM_INSTS_LINES_V ,
-
VIEW: APPS.CSI_UNIT_INSTANCES_V
12.1.1
-
VIEW: APPS.CSF_M_ITEM_INSTANCES_V
12.1.1
owner:APPS, object_type:VIEW, object_name:CSF_M_ITEM_INSTANCES_V, status:VALID,
-
VIEW: APPS.OKX_INSTALL_ITEMS_V
12.2.2
-
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: APPS.CSI_UNIT_INSTANCES_V
12.2.2
-
VIEW: APPS.CS_SR_NEW_ACC_CP_RG2_V
12.1.1
owner:APPS, object_type:VIEW, object_name:CS_SR_NEW_ACC_CP_RG2_V, status:VALID,
-
View: CSI_INSTANCE_PARTY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INSTANCE_PARTY_V, object_name:CSI_INSTANCE_PARTY_V, status:VALID, product: CSI - Install Base , description: Instance Party Associations view. , implementation_dba_data: APPS.CSI_INSTANCE_PARTY_V ,
-
View: CSI_INSTANCE_PARTY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INSTANCE_PARTY_V, object_name:CSI_INSTANCE_PARTY_V, status:VALID, product: CSI - Install Base , description: Instance Party Associations view. , implementation_dba_data: APPS.CSI_INSTANCE_PARTY_V ,
-
VIEW: APPS.CS_SR_NEW_PRODUCTS_MAINT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_NEW_PRODUCTS_MAINT_V, object_name:CS_SR_NEW_PRODUCTS_MAINT_V, status:VALID,
-
APPS.CSI_INV_DISCREPANCY_PKG SQL Statements
12.2.2
-
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 ,
-
APPS.CSI_INV_DISCREPANCY_PKG SQL Statements
12.1.1
-
VIEW: APPS.CSI_UNIT_INSTANCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_UNIT_INSTANCES_V, object_name:CSI_UNIT_INSTANCES_V, status:VALID,
-
VIEW: APPS.CS_SR_NEW_ACC_CP_RG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_NEW_ACC_CP_RG_V, object_name:CS_SR_NEW_ACC_CP_RG_V, status:VALID,
-
VIEW: CSI.CSI_INSTANCE_INTERFACE#
12.2.2
-
VIEW: APPS.CS_SR_NEW_ACC_CP_RG2_V
12.2.2
owner:APPS, object_type:VIEW, object_name:CS_SR_NEW_ACC_CP_RG2_V, status:VALID,