Search Results ic_tran_vw1
Overview
IC_TRAN_VW1 is a reporting view owned by the APPS schema in Oracle E-Business Suite, defined within the GMI (Process Manufacturing Inventory) product family. Its documented purpose is succinct: it is a transaction view. In practical terms, IC_TRAN_VW1 presents a consolidated, real-time read interface over Process Manufacturing inventory transactions by combining two physically separate transaction stores—pending transactions and completed transactions—into a single logical result set. This consolidation is significant because GMI records inventory activity in stages: transactions are first staged in the pending table and only later finalized into the completed table. The view eliminates the need for downstream reports, interfaces, and integrations to query both stores independently and reconcile the results.
The view is documented as VALID in ETRM 12.2.2 and is available in both 12.1.1 and 12.2.2 environments. Because it exposes a single uniform transaction stream keyed by TRANS_ID, it functions as a stable reporting abstraction that shields consumers from the underlying staging model.
Underlying Base Objects
IC_TRAN_VW1 is defined over two documented base objects, both exposed in the APPS schema as synonyms: IC_TRAN_CMP (completed transactions) and IC_TRAN_PND (pending transactions). The view text is a UNION ALL of two SELECT statements. The first branch reads from IC_TRAN_PND with the filter DELETE_MARK = 0, excluding logically deleted staging rows. The second branch reads from IC_TRAN_CMP and hard-codes the COMPLETED_IND column to the literal value 1, while the pending branch does not project a completed indicator in the same way, leaving transactions in the pending store distinguishable from completed ones.
Both branches project an identical column list, which preserves positional and type compatibility required by UNION ALL. Because IC_TRAN_CMP is presumed to hold only finalized records, no DELETE_MARK filter is applied to that branch. The result is a view whose cardinality equals the number of non-deleted pending rows plus all completed rows.
Key Columns
- TRANS_ID — The transaction identifier; the primary key used to join the view back to transaction detail.
- COMPLETED_IND — Distinguishes completed transactions (literal 1 from IC_TRAN_CMP) from pending ones.
- DOC_TYPE / DOC_ID / DOC_LINE — The source document context (for example, a batch or order) that generated the transaction.
- ITEM_ID, LOT_ID, LOT_STATUS, QC_GRADE — Item and lot attributes, including quality grade, reflecting GMI's lot-grade inventory model.
- ORGN_CODE, WHSE_CODE, LOCATION — Organizational, warehouse, and location dimensions.
- TRANS_QTY, TRANS_QTY2, TRANS_UM, TRANS_UM2 — Primary and secondary transaction quantities with their units of measure.
- TRANS_DATE, CREATION_DATE — Transaction and record creation timestamps.
- TRANS_STAT, OP_CODE, REASON_CODE, TEXT_CODE, LINE_TYPE, LINE_ID, CO_CODE — Status and processing attributes supporting reconciliation and audit.
Common Use Cases and Queries
The view is typically used for transaction inquiries, reconciliation between pending and completed activity, and feeding downstream extracts. A common pattern filters by item, organization, or date range.
- List pending versus completed counts:
SELECT COMPLETED_IND, COUNT(*) FROM APPS.IC_TRAN_VW1 GROUP BY COMPLETED_IND; - Retrieve transactions for an item and organization:
SELECT TRANS_ID, DOC_TYPE, TRANS_QTY, TRANS_UM, TRANS_DATE FROM APPS.IC_TRAN_VW1 WHERE ITEM_ID = :item AND ORGN_CODE = :orgn ORDER BY TRANS_DATE; - Audit completed-only activity:
SELECT * FROM APPS.IC_TRAN_VW1 WHERE COMPLETED_IND = 1 AND TRANS_DATE >= :from_date;
Because the view reads directly from live transaction tables, queries should always be constrained by date or organization to avoid full scans across both stores.
-
View: IC_TRAN_VW1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_TRAN_VW1, object_name:IC_TRAN_VW1, status:VALID, product: GMI - Process Manufacturing Inventory , description: Transaction view. , implementation_dba_data: APPS.IC_TRAN_VW1 ,
-
View: IC_TRAN_VW1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_TRAN_VW1, object_name:IC_TRAN_VW1, status:VALID, product: GMI - Process Manufacturing Inventory , description: Transaction view. , implementation_dba_data: APPS.IC_TRAN_VW1 ,
-
VIEW: APPS.QC_TRAN_VW1
12.1.1
-
VIEW: APPS.QC_TRAN_VW2
12.2.2
-
VIEW: APPS.QC_TRAN_VW2
12.1.1
-
VIEW: APPS.QC_TRAN_VW1
12.2.2
-
View: QC_TRAN_VW2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.QC_TRAN_VW2, object_name:QC_TRAN_VW2, status:VALID, product: GMD - Process Manufacturing Product Development , description: Where-used view. , implementation_dba_data: APPS.QC_TRAN_VW2 ,
-
View: QC_TRAN_VW1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.QC_TRAN_VW1, object_name:QC_TRAN_VW1, status:VALID, product: GMD - Process Manufacturing Product Development , description: Lot source view. , implementation_dba_data: APPS.QC_TRAN_VW1 ,
-
View: QC_TRAN_VW1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.QC_TRAN_VW1, object_name:QC_TRAN_VW1, status:VALID, product: GMD - Process Manufacturing Product Development , description: Lot source view. , implementation_dba_data: APPS.QC_TRAN_VW1 ,
-
View: QC_TRAN_VW2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.QC_TRAN_VW2, object_name:QC_TRAN_VW2, status:VALID, product: GMD - Process Manufacturing Product Development , description: Where-used view. , implementation_dba_data: APPS.QC_TRAN_VW2 ,
-
VIEW: APPS.GMI_LOTS_EVENT_V
12.2.2
-
VIEW: APPS.GMI_LOTS_EVENT_V
12.1.1
-
PACKAGE BODY: APPS.PMI_LOT_GENEALOGY_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PMI_LOT_GENEALOGY_PKG, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.PMITS_INV_LINE_SUMM_V
12.2.2
-
PACKAGE BODY: APPS.PMI_LOT_GENEALOGY_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PMI_LOT_GENEALOGY_PKG, status:VALID,
-
PACKAGE BODY: APPS.GMI_GMILTGEN_XMLP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMI_GMILTGEN_XMLP_PKG, status:VALID,
-
PACKAGE BODY: APPS.GMI_GMILTGEN_XMLP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMI_GMILTGEN_XMLP_PKG, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.OPI_EDW_OPMCOGS_F_C
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OPI_EDW_OPMCOGS_F_C, status:VALID,
-
VIEW: APPS.PMITS_INV_LINE_SUMM_V
12.1.1
-
View: GMI_LOTS_EVENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_LOTS_EVENT_V, object_name:GMI_LOTS_EVENT_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is used to populate the Lot Events tab of the Lot Genealogy Inquiry. , implementation_dba_data: APPS.GMI_LOTS_EVENT_V ,
-
PACKAGE BODY: APPS.OPI_DBI_INV_VALUE_OPM_INIT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OPI_DBI_INV_VALUE_OPM_INIT_PKG, status:VALID,
-
View: GMI_LOTS_EVENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_LOTS_EVENT_V, object_name:GMI_LOTS_EVENT_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is used to populate the Lot Events tab of the Lot Genealogy Inquiry. , implementation_dba_data: APPS.GMI_LOTS_EVENT_V ,
-
SYNONYM: APPS.IC_TRAN_CMP
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IC_TRAN_CMP, status:VALID,
-
SYNONYM: APPS.IC_TRAN_CMP
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IC_TRAN_CMP, status:VALID,
-
VIEW: APPS.QC_TRAN_VW2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.QC_TRAN_VW2, object_name:QC_TRAN_VW2, status:VALID,
-
VIEW: APPS.PMITS_INV_LINE_SUMM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_INV_LINE_SUMM_V, object_name:PMITS_INV_LINE_SUMM_V, status:VALID,
-
VIEW: APPS.IC_TRAN_VW1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_TRAN_VW1, object_name:IC_TRAN_VW1, status:VALID,
-
VIEW: APPS.PMITS_INV_LINE_SUMM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_INV_LINE_SUMM_V, object_name:PMITS_INV_LINE_SUMM_V, status:VALID,
-
View: PMITS_INV_LINE_SUMM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_INV_LINE_SUMM_V, object_name:PMITS_INV_LINE_SUMM_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: This View Summarizes Transactions at Line Level , implementation_dba_data: APPS.PMITS_INV_LINE_SUMM_V ,
-
View: PMITS_INV_LINE_SUMM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_INV_LINE_SUMM_V, object_name:PMITS_INV_LINE_SUMM_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: This View Summarizes Transactions at Line Level , implementation_dba_data: APPS.PMITS_INV_LINE_SUMM_V ,
-
VIEW: APPS.QC_TRAN_VW1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.QC_TRAN_VW1, object_name:QC_TRAN_VW1, status:VALID,
-
VIEW: APPS.GMI_LOTS_EVENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_LOTS_EVENT_V, object_name:GMI_LOTS_EVENT_V, status:VALID,
-
VIEW: APPS.IC_TRAN_VW1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_TRAN_VW1, object_name:IC_TRAN_VW1, status:VALID,
-
VIEW: APPS.GMI_LOTS_EVENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_LOTS_EVENT_V, object_name:GMI_LOTS_EVENT_V, status:VALID,
-
VIEW: APPS.QC_TRAN_VW2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.QC_TRAN_VW2, object_name:QC_TRAN_VW2, status:VALID,
-
VIEW: APPS.QC_TRAN_VW1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.QC_TRAN_VW1, object_name:QC_TRAN_VW1, status:VALID,
-
SYNONYM: APPS.IC_TRAN_PND
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IC_TRAN_PND, status:VALID,
-
APPS.PMI_LOT_GENEALOGY_PKG SQL Statements
12.2.2
-
APPS.PMI_LOT_GENEALOGY_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.IC_TRAN_PND
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IC_TRAN_PND, status:VALID,
-
APPS.GMI_GMILTGEN_XMLP_PKG SQL Statements
12.1.1
-
APPS.GMI_GMILTGEN_XMLP_PKG SQL Statements
12.2.2
-
APPS.OPI_EDW_OPMCOGS_F_C SQL Statements
12.1.1
-
APPS.OPI_DBI_INV_VALUE_OPM_INIT_PKG dependencies on IC_TRAN_VW1
12.1.1
-
APPS.PMI_LOT_GENEALOGY_PKG dependencies on IC_TRAN_VW1
12.1.1
-
APPS.GMI_GMILTGEN_XMLP_PKG dependencies on IC_TRAN_VW1
12.2.2
-
APPS.OPI_EDW_OPMCOGS_F_C dependencies on IC_TRAN_VW1
12.1.1
-
APPS.GMI_GMILTGEN_XMLP_PKG dependencies on IC_TRAN_VW1
12.1.1