Search Results ic_tran_cmp_vw1
Overview
IC_TRAN_CMP_VW1 is a read-only database view owned by the APPS schema in Oracle E-Business Suite, classified under the GMI (Process Manufacturing Inventory) product family. Its documented purpose is to present completed inventory transactions in a single, consolidated result set. Rather than querying the base transaction tables individually, applications and reports can resolve a unified picture of finished material movements through this view.
Functionally, the view is a union of two distinct storage areas: transactions that have already been committed to the completed-transaction table (IC_TRAN_CMP) and pending transactions (IC_TRAN_PND) that have been flagged as complete. A literal discriminator column named C is appended to each branch of the union, carrying the value 'C' for rows sourced from the completed table and 'P' for rows sourced from the pending table. This allows downstream consumers to distinguish the origin of any given row without needing to know the physical partitioning. Because it exposes the TRANS_QTY and TRANS_QTY2 columns, it is a frequent target for quantity-based reconciliation, variance analysis, and inventory valuation queries.
Underlying Base Objects
The view is defined exclusively over two APPS synonyms, which resolve to the underlying GMI inventory transaction tables:
- IC_TRAN_CMP — the completed inventory transaction table. All rows from this object are returned unconditionally in the first branch of the union.
- IC_TRAN_PND — the pending inventory transaction table. In the second branch, only rows satisfying
COMPLETED_IND = 1andDELETE_MARK = 0are selected, meaning the view filters pending records to those marked complete and excludes logically deleted rows.
Both branches project an identical, positionally aligned column list, which is a prerequisite for a valid UNION. The view therefore behaves as a superset of committed transactions plus a filtered subset of pending transactions that have attained completed status. Because it is a view and not a materialized object, it inherits the security and read consistency of its base tables and reflects changes in real time.
Key Columns
The view exposes a rich set of transaction attributes. The most operationally significant include:
- TRANS_QTY / TRANS_QTY2 — the primary and secondary transaction quantities, expressed in the transaction units and the secondary unit of measure respectively.
- TRANS_UM / TRANS_UM2 — the units of measure corresponding to each quantity column.
- ITEM_ID — the inventory item involved in the transaction.
- TRANS_ID / LINE_ID — transaction and line identifiers used for joining to detail tables.
- CO_CODE, ORGN_CODE, WHSE_CODE, LOCATION — the organizational hierarchy: company, organization, warehouse, and storage location.
- LOT_ID, LOT_STATUS, QC_GRADE — lot tracking and quality attributes relevant to process manufacturing.
- DOC_ID, DOC_TYPE, DOC_LINE, LINE_TYPE — the source document that generated the transaction.
- TRANS_DATE, CREATION_DATE, TRANS_STAT — timing and status information.
- REASON_CODE, OP_CODE, TEXT_CODE — reason, operation, and textual references.
- C — the source discriminator (
'C'= completed table,'P'= pending table). - CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — standard EBS audit columns.
Common Use Cases and Queries
The view is typically used for inventory transaction reporting, quantity reconciliation, and integration feeds where both posted and completed-pending movements must be seen together. A basic query that summarizes quantity by source and item follows:
SELECT ITEM_ID, C, SUM(TRANS_QTY) FROM APPS.IC_TRAN_CMP_VW1 GROUP BY ITEM_ID, C;SELECT * FROM APPS.IC_TRAN_CMP_VW1 WHERE TRANS_QTY > 0 AND TRANS_DATE >= SYSDATE - 30;- Filtering on
C = 'P'isolates transactions still resident in the pending table, useful for identifying unposted activity.
Because the view spans two large transaction tables, queries should be constrained by date, organization, or item to avoid full scans. It serves as the sanctioned GMI read interface for completed transaction data across EBS 12.1.1 and 12.2.2.
-
View: IC_TRAN_CMP_VW1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_TRAN_CMP_VW1, object_name:IC_TRAN_CMP_VW1, status:VALID, product: GMI - Process Manufacturing Inventory , description: Completed inventory transaction , implementation_dba_data: APPS.IC_TRAN_CMP_VW1 ,
-
View: IC_TRAN_CMP_VW1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_TRAN_CMP_VW1, object_name:IC_TRAN_CMP_VW1, status:VALID, product: GMI - Process Manufacturing Inventory , description: Completed inventory transaction , implementation_dba_data: APPS.IC_TRAN_CMP_VW1 ,
-
APPS.OPI_EDW_OPM_PRD_PKG SQL Statements
12.1.1
-
VIEW: APPS.PMIFV_BATCH_TRANS_V
12.1.1
-
VIEW: APPS.PMIFV_BATCH_TRANS_V
12.2.2
-
PACKAGE BODY: APPS.OPI_EDW_OPM_PRD_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OPI_EDW_OPM_PRD_PKG, status:VALID,
-
APPS.PMI_PRODUCTION_SUM SQL Statements
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.PMI_PRODUCTION_SUM
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PMI_PRODUCTION_SUM, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.PMI_PRODUCTION_SUM
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PMI_PRODUCTION_SUM, status:VALID,
-
APPS.PMI_PRODUCTION_SUM SQL Statements
12.1.1
-
View: PMIFV_BATCH_TRANS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_BATCH_TRANS_V, object_name:PMIFV_BATCH_TRANS_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: Batch Transaction Details , implementation_dba_data: APPS.PMIFV_BATCH_TRANS_V ,
-
View: PMIFV_BATCH_TRANS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_BATCH_TRANS_V, object_name:PMIFV_BATCH_TRANS_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: Batch Transaction Details , implementation_dba_data: APPS.PMIFV_BATCH_TRANS_V ,
-
SYNONYM: APPS.IC_TRAN_CMP
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IC_TRAN_CMP, status:VALID,
-
VIEW: APPS.PMIFV_BATCH_TRANS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_BATCH_TRANS_V, object_name:PMIFV_BATCH_TRANS_V, status:VALID,
-
VIEW: APPS.PMIFV_BATCH_TRANS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_BATCH_TRANS_V, object_name:PMIFV_BATCH_TRANS_V, status:VALID,
-
SYNONYM: APPS.IC_TRAN_CMP
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IC_TRAN_CMP, status:VALID,
-
VIEW: APPS.IC_TRAN_CMP_VW1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_TRAN_CMP_VW1, object_name:IC_TRAN_CMP_VW1, status:VALID,
-
VIEW: APPS.IC_TRAN_CMP_VW1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_TRAN_CMP_VW1, object_name:IC_TRAN_CMP_VW1, status:VALID,
-
PACKAGE BODY: APPS.OPI_EDW_OPM_PRD_PKG
12.1.1
-
SYNONYM: APPS.IC_TRAN_PND
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IC_TRAN_PND, status:VALID,
-
PACKAGE BODY: APPS.PMI_PRODUCTION_SUM
12.2.2
-
PACKAGE BODY: APPS.PMI_PRODUCTION_SUM
12.1.1
-
SYNONYM: APPS.IC_TRAN_PND
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IC_TRAN_PND, status:VALID,
-
APPS.OPI_EDW_OPM_PRD_PKG dependencies on IC_TRAN_CMP_VW1
12.1.1
-
APPS.PMI_PRODUCTION_SUM dependencies on IC_TRAN_CMP_VW1
12.2.2
-
APPS.PMI_PRODUCTION_SUM dependencies on IC_TRAN_CMP_VW1
12.1.1
-
APPS.OPI_EDW_OPM_PRD_PKG dependencies on IC_TRAN_CMP
12.1.1
-
APPS.PMI_PRODUCTION_SUM dependencies on IC_TRAN_CMP
12.1.1
-
APPS.PMI_PRODUCTION_SUM dependencies on IC_TRAN_CMP
12.2.2
-
APPS.PMI_PRODUCTION_SUM dependencies on FND_PROFILE
12.1.1
-
APPS.PMI_PRODUCTION_SUM dependencies on FND_PROFILE
12.2.2
-
APPS.OPI_EDW_OPM_PRD_PKG dependencies on FND_PROFILE
12.1.1
-
APPS.OPI_EDW_OPM_PRD_PKG dependencies on IC_LOTS_MST
12.1.1
-
APPS.PMI_PRODUCTION_SUM dependencies on IC_LOTS_MST
12.1.1
-
APPS.PMI_PRODUCTION_SUM dependencies on IC_LOTS_MST
12.2.2
-
APPS.PMI_PRODUCTION_SUM dependencies on IC_ITEM_MST
12.2.2
-
APPS.PMI_PRODUCTION_SUM dependencies on IC_ITEM_MST
12.1.1
-
APPS.OPI_EDW_OPM_PRD_PKG dependencies on IC_ITEM_MST
12.1.1
-
eTRM - PMI Tables and Views
12.2.2
-
eTRM - PMI Tables and Views
12.1.1
-
eTRM - GMI Tables and Views
12.2.2
description: Table used to relate Item ID with Roles. If the Item ID is NULL, then Roles will be associated with the warehouse Item ID. This table will be used by the Lot Expiry/Retest Workflow. ,
-
eTRM - GMI Tables and Views
12.1.1
description: Table used to relate Item ID with Roles. If the Item ID is NULL, then Roles will be associated with the warehouse Item ID. This table will be used by the Lot Expiry/Retest Workflow. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - PMI Tables and Views
12.2.2
-
eTRM - PMI Tables and Views
12.1.1
-
eTRM - GMI Tables and Views
12.1.1
description: Table used to relate Item ID with Roles. If the Item ID is NULL, then Roles will be associated with the warehouse Item ID. This table will be used by the Lot Expiry/Retest Workflow. ,
-
eTRM - GMI Tables and Views
12.2.2
description: Table used to relate Item ID with Roles. If the Item ID is NULL, then Roles will be associated with the warehouse Item ID. This table will be used by the Lot Expiry/Retest Workflow. ,