Search Results external_reference
Overview
APPS.CSI_WIP_ASSEMBLIES_V is a reporting and integration view within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 environments that exposes Work in Process (WIP) assembly instances as they are tracked by the CSI (Complex Maintenance, Repair, and Overhaul / Installed Base) transaction model. The view consolidates assembly instance data originating from two distinct sources: active CSI transaction lines generated during WIP assembly completion and return transactions, and the master item instance repository. This dual-source design allows downstream consumers to see WIP assemblies in a single unified query without directly joining the transactional and master-instance tables.
The view is registered under the APPS schema and is commonly referenced in Installed Base reconciliation, WIP completion validity reports, and custom integrations that need to reconcile physical assembly serial and lot information with the WIP job that produced it. It is particularly relevant to users searching for the external_reference attribute, which is surfaced directly by this view to carry external system identifiers associated with the WIP transaction.
Underlying Base Objects
Three documented base objects underpin the view, all accessed through APPS synonyms:
- CSI_T_TRANSACTION_LINES — the transactional header table identifying each CSI transaction and its originating source (for example,
source_transaction_table = 'WIP_ENTITIES'). - CSI_T_TXN_LINE_DETAILS — the detail table holding per-instance data such as serial number, lot number, quantity, and the external reference for each transaction line.
- CSI_ITEM_INSTANCES — the master item instance table, supplying instance-level attributes for assemblies that have no active CSI transaction lines.
The view is defined as a UNION of two SELECT statements. The first branch joins CSI_T_TRANSACTION_LINES to CSI_T_TXN_LINE_DETAILS, filtered on the WIP_ENTITIES source table and a source_transaction_flag of 'Y', to return transactionally active assemblies. The second branch reads CSI_ITEM_INSTANCES directly, using a NOT EXISTS subquery to exclude instances already represented in active transaction lines, synthesizing constant values for source_transaction_flag, processing_status, and transaction identifiers.
Key Columns
The view exposes the following notable columns:
- instance_id — the CSI item instance identifier, the primary join key to other Installed Base views.
- inventory_item_id and inv_organization_id — the assembly item and inventory organization. In the second branch this maps from
last_vld_organization_id. - serial_number and lot_number — traceability attributes for the tracked assembly.
- quantity and unit_of_measure — the assembled quantity and its UOM.
- instance_status_id — the current Installed Base status of the instance.
- location_type_code and location_id — where the instance is currently held.
- external_reference — a free-form external system reference carried from the transaction line detail; useful for cross-system reconciliation. In the second branch it is sourced directly from CSI_ITEM_INSTANCES.
- last_wip_job_id — the WIP job that last affected the instance, mapped from
source_transaction_idin the transactional branch. - source_transaction_flag, processing_status, transaction_line_id, txn_line_detail_id — transaction lineage columns; the second branch returns 'Y', NULL, and NULL respectively for these.
Common Use Cases and Queries
Typical uses include reconciling WIP assembly completions against Installed Base records, auditing serialized assemblies by external reference, and diagnosing assemblies that exist in CSI_ITEM_INSTANCES but lack a corresponding transaction line.
Sample query retrieving WIP assemblies by external reference:
SELECT instance_id, inventory_item_id, inv_organization_id, serial_number, lot_number, external_reference, last_wip_job_id FROM apps.csi_wip_assemblies_v WHERE external_reference = :p_ref;
Sample query listing assemblies with transaction lineage:
SELECT instance_id, transaction_line_id, txn_line_detail_id, source_transaction_flag, processing_status FROM apps.csi_wip_assemblies_v WHERE transaction_line_id IS NOT NULL;
Sample query identifying orphaned instances (no active transaction line):
SELECT instance_id, serial_number, external_reference FROM apps.csi_wip_assemblies_v WHERE transaction_line_id IS NULL AND source_transaction_flag = 'Y';
Because the view performs set-based UNION logic over transactional and master tables, queries should include selective predicates on instance_id, inventory_item_id, or external_reference to constrain the result set and avoid full-table scans across the CSI transaction tables.
-
VIEW: APPS.CSI_WIP_ASSEMBLIES_V
12.2.2
-
TABLE: IGS.IGS_FI_DSB_JNL_EXREF_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_FI_DSB_JNL_EXREF_OLD, status:VALID,
-
VIEW: APPS.CSI_WIP_ASSEMBLIES_V
12.1.1
-
View: CSI_WIP_ASSEMBLIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_WIP_ASSEMBLIES_V, object_name:CSI_WIP_ASSEMBLIES_V, status:VALID, product: CSI - Install Base , implementation_dba_data: APPS.CSI_WIP_ASSEMBLIES_V ,
-
View: CSI_WIP_ASSEMBLIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_WIP_ASSEMBLIES_V, object_name:CSI_WIP_ASSEMBLIES_V, status:VALID, product: CSI - Install Base , implementation_dba_data: APPS.CSI_WIP_ASSEMBLIES_V ,
-
VIEW: APPS.CSI_WIP_COMPONENTS_V
12.1.1
-
APPS.JE_GR_STATUTORY SQL Statements
12.2.2
-
VIEW: GL.GL_JE_HEADERS#
12.2.2
-
View: CSI_WIP_COMPONENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_WIP_COMPONENTS_V, object_name:CSI_WIP_COMPONENTS_V, status:VALID, product: CSI - Install Base , implementation_dba_data: APPS.CSI_WIP_COMPONENTS_V ,
-
APPS.JE_GR_STATUTORY SQL Statements
12.1.1
-
View: CSI_WIP_COMPONENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_WIP_COMPONENTS_V, object_name:CSI_WIP_COMPONENTS_V, status:VALID, product: CSI - Install Base , implementation_dba_data: APPS.CSI_WIP_COMPONENTS_V ,
-
VIEW: FV.FV_SF224_TEMP#
12.2.2
-
VIEW: CSD.CSD_BULK_RECEIVE_ITEMS_B#
12.2.2
-
VIEW: APPS.CSI_WIP_COMPONENTS_V
12.2.2
-
VIEW: CSI.CSI_T_TXN_LINE_DETAILS#
12.2.2
-
VIEW: APPS.CSI_WIP_ASSEMBLIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_WIP_ASSEMBLIES_V, object_name:CSI_WIP_ASSEMBLIES_V, status:VALID,
-
VIEW: CSM.CSM_INCIDENTS_ALL_INQ#
12.2.2
-
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,
-
VIEW: APPS.GLBV_BUDGET_JOURNAL_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLBV_BUDGET_JOURNAL_ENTRIES, object_name:GLBV_BUDGET_JOURNAL_ENTRIES, status:VALID,
-
VIEW: APPS.IEX_LM_CKEY_CSI_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_LM_CKEY_CSI_V, status:VALID,
-
VIEW: CSD.CSD_REPAIRS_INTERFACE#
12.2.2
-
VIEW: APPS.CSI_WIP_COMPONENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_WIP_COMPONENTS_V, object_name:CSI_WIP_COMPONENTS_V, status:VALID,
-
VIEW: APPS.CSI_WIP_ASSEMBLIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_WIP_ASSEMBLIES_V, object_name:CSI_WIP_ASSEMBLIES_V, status:VALID,
-
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 ,
-
VIEW: CSI.CSI_ITEM_INSTANCES#
12.2.2
-
View: GLFV_BUDGET_JOURNAL_ENTRIES
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
VIEW: OTA.OTA_FINANCE_HEADERS#
12.2.2
-
VIEW: APPS.CSI_WIP_COMPONENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_WIP_COMPONENTS_V, object_name:CSI_WIP_COMPONENTS_V, status:VALID,
-
VIEW: APPS.GLFV_ACTUAL_JOURNAL_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_ACTUAL_JOURNAL_ENTRIES, object_name:GLFV_ACTUAL_JOURNAL_ENTRIES, status:VALID,
-
VIEW: APPS.PSA_JE_BCP_LINES_V
12.1.1
-
VIEW: APPS.AST_LM_CKEY_CSI_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_CKEY_CSI_V, object_name:AST_LM_CKEY_CSI_V, status:VALID,
-
VIEW: APPS.CS_SR_FIND_EAM_PROD_MAINT_NM_V
12.2.2
owner:APPS, object_type:VIEW, object_name:CS_SR_FIND_EAM_PROD_MAINT_NM_V, status:VALID,
-
VIEW: APPS.GLBV_ENCUMB_JOURNAL_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLBV_ENCUMB_JOURNAL_ENTRIES, object_name:GLBV_ENCUMB_JOURNAL_ENTRIES, status:VALID,
-
View: GLFV_BUDGET_JOURNAL_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_BUDGET_JOURNAL_ENTRIES, object_name:GLFV_BUDGET_JOURNAL_ENTRIES, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GLFV_BUDGET_JOURNAL_ENTRIES ,
-
View: GLFV_ENCUMB_JOURNAL_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_ENCUMB_JOURNAL_ENTRIES, object_name:GLFV_ENCUMB_JOURNAL_ENTRIES, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GLFV_ENCUMB_JOURNAL_ENTRIES ,
-
VIEW: APPS.AST_LM_CKEY_CSI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_CKEY_CSI_V, object_name:AST_LM_CKEY_CSI_V, status:VALID,
-
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: APPS.IEX_LM_CKEY_CSI_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_LM_CKEY_CSI_V, status:VALID,
-
VIEW: APPS.OKS_USAGE_ITEM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_USAGE_ITEM_V, object_name:OKS_USAGE_ITEM_V, status:VALID,
-
View: GLFV_ENCUMB_JOURNAL_ENTRIES
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.OKS_USAGE_ITEM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_USAGE_ITEM_V, object_name:OKS_USAGE_ITEM_V, status:VALID,
-
VIEW: APPS.IGS_PE_PERS_ENCUMB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERS_ENCUMB_V, object_name:IGS_PE_PERS_ENCUMB_V, status:VALID,
-
VIEW: APPS.GLFV_ENCUMB_JOURNAL_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_ENCUMB_JOURNAL_ENTRIES, object_name:GLFV_ENCUMB_JOURNAL_ENTRIES, status:VALID,
-
VIEW: APPS.GLBV_ACTUAL_JOURNAL_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLBV_ACTUAL_JOURNAL_ENTRIES, object_name:GLBV_ACTUAL_JOURNAL_ENTRIES, status:VALID,
-
View: GLFV_ACTUAL_JOURNAL_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_ACTUAL_JOURNAL_ENTRIES, object_name:GLFV_ACTUAL_JOURNAL_ENTRIES, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GLFV_ACTUAL_JOURNAL_ENTRIES ,
-
VIEW: APPS.CS_SR_FIND_PROD_MAINT_EAM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_FIND_PROD_MAINT_EAM_V, object_name:CS_SR_FIND_PROD_MAINT_EAM_V, status:VALID,
-
APPS.OTA_TFH_API_SHD SQL Statements
12.2.2
-
VIEW: APPS.CS_SR_FIND_EAM_PROD_MAINT_NM_V
12.1.1
owner:APPS, object_type:VIEW, object_name:CS_SR_FIND_EAM_PROD_MAINT_NM_V, status:VALID,
-
View: OTFV_FINANCE_HEADERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_FINANCE_HEADERS, object_name:OTFV_FINANCE_HEADERS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_FINANCE_HEADERS ,
-
VIEW: APPS.GLFV_BUDGET_JOURNAL_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_BUDGET_JOURNAL_ENTRIES, object_name:GLFV_BUDGET_JOURNAL_ENTRIES, status:VALID,