Search Results lot_fk
Overview
OPI_EDW_OPIINV_DAILY_STAT_FCV is a VALID view owned by the APPS schema within the OPI (Operations Intelligence) product family in Oracle E-Business Suite 12.1.1 and 12.2.2. It functions as a source extraction view that presents Inventory Daily Transaction Summary data drawn from discrete Manufacturing source tables. The view is part of the operational data store / ETL layer used to feed the Oracle EBS data warehouse, aggregating daily inventory balances and transaction summaries into a denormalized, reporting-ready structure.
Rather than exposing raw transactional records, the view consolidates averaged, beginning-balance, and quantity/value metrics across inventory, on-hand, and WIP states. It also generates surrogate foreign key columns by concatenating natural keys, a common pattern in EDW staging views that enables conformed dimension joins in the target warehouse. The view therefore serves both as an integration artifact for data movement and as a semantic layer for downstream inventory analytics.
Underlying Base Objects
The documented ETRM metadata lists no referenced base objects for this view, meaning the dependency list is not captured in the repository record. However, the view SQL itself reveals the physical sources. The primary alias OIPL points to the underlying inventory daily summary fact table (the OPI inventory daily transaction summary staging table), which supplies quantity and value measures such as AVG_INT_QTY, AVG_ONH_QTY, AVG_WIP_QTY, and their beginning-balance counterparts. The alias INST references an instance-level table providing INSTANCE_CODE, used to build composite keys tied to the EBS instance. The alias MP supplies inventory organization master data via ORGANIZATION_CODE, and OOD supplies the SET_OF_BOOKS_ID used by the EDW_TIME_PKG calendar conversion functions.
The view additionally calls EDW_TIME_PKG.CAL_DAY_TO_CAL_PERIOD_FK and EDW_TIME_PKG.CAL_DAY_FK to derive date dimension foreign keys from OIPL.TRX_DATE.
Key Columns
- INV_DAILY_STATUS_PK — Composite primary key built from IDS_KEY, INSTANCE_CODE, and the literal 'OPI'.
- BASE_CURRENCY_FK / BASE_UOM_FK — Currency and unit-of-measure foreign keys sourced from OIPL.
- INV_ORG_FK / ITEM_ORG_FK — Organization and item-organization composite keys.
- LOCATOR_FK / LOT_FK — Locator and lot dimension keys; NULL lots resolve to 'NA_EDW'.
- PRD_DATE_FK / TRX_DATE_FK — Period and date foreign keys derived via EDW_TIME_PKG.
- AVG_*, BEG_* measures — Averaged and beginning balances for internal, on-hand, and WIP quantities in the base UOM and values in both base (B) and global (G) currency, scaled by EDW_UOM_CONV_RATE and EDW_CONV_RATE.
The item_status concept a user might expect is not a named column here; item status is typically joined from the item master dimension, with this view supplying the ITEM_ORG_FK needed for that linkage.
Common Use Cases and Queries
Typical uses include populating the inventory daily summary fact in the EDW and powering on-hand, WIP, and internal balance trend reporting by organization, item, and period.
SELECT item_org_fk, trx_date_fk, avg_onh_qty, avg_onh_val_g FROM apps.opi_edw_opiinv_daily_stat_fcv WHERE prd_date_fk = :period_fk AND inv_org_fk = :org_fk;
To enrich with item status, analysts join the generated ITEM_ORG_FK back to the item dimension. Because all keys are string-concatenated, queries must respect the composite-key format when performing joins.
-
APPS.OPI_EDW_INV_DAILY_STAT_F_C SQL Statements
12.1.1
-
View: OPI_EDW_OPIINV_DAILY_STAT_FCV
12.2.2
product: OPI - Operations Intelligence (Obsolete) , description: This is the source view for extracting Invetory Daily Transaction Summary data from the discrete Manufacturing source tables. , implementation_dba_data: Not implemented in this database ,
-
View: OPI_EDW_OPIINV_DAILY_STAT_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OPI.OPI_EDW_OPIINV_DAILY_STAT_FCV, object_name:OPI_EDW_OPIINV_DAILY_STAT_FCV, status:VALID, product: OPI - Operations Intelligence , description: This is the source view for extracting Invetory Daily Transaction Summary data from the discrete Manufacturing source tables. , implementation_dba_data: APPS.OPI_EDW_OPIINV_DAILY_STAT_FCV ,
-
View: OPI_EDW_OPMINV_DAILY_STAT_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OPI.OPI_EDW_OPMINV_DAILY_STAT_FCV, object_name:OPI_EDW_OPMINV_DAILY_STAT_FCV, status:VALID, product: OPI - Operations Intelligence , description: This is the source view for extracting Invetory Daily Transaction Summary data from the Process Manufacturing source tables. , implementation_dba_data: APPS.OPI_EDW_OPMINV_DAILY_STAT_FCV ,
-
View: OPI_EDW_OPMINV_DAILY_STAT_FCV
12.2.2
product: OPI - Operations Intelligence (Obsolete) , description: This is the source view for extracting Invetory Daily Transaction Summary data from the Process Manufacturing source tables. , implementation_dba_data: Not implemented in this database ,
-
APPS.OPI_EDW_OPMINV_DAILY_STAT_F_C SQL Statements
12.1.1
-
VIEW: APPS.OPI_EDW_OPIINV_DAILY_STAT_FCV
12.1.1
-
VIEW: APPS.OPI_EDW_OPMINV_DAILY_STAT_FCV
12.1.1
-
View: PMI_EDW_BTCH_GRADE_F_FCV
12.2.2
product: PMI - Process Manufacturing Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: PMI_EDW_BTCH_GRADE_F_FCV
12.1.1
product: PMI - Process Manufacturing Intelligence , implementation_dba_data: Not implemented in this database ,
-
TABLE: OPI.OPI_EDW_INV_DAILY_STAT_F_DLOG
12.1.1
owner:OPI, object_type:TABLE, fnd_design_data:OPI.OPI_EDW_INV_DAILY_STAT_F_DLOG, object_name:OPI_EDW_INV_DAILY_STAT_F_DLOG, status:VALID,
-
TABLE: OPI.OPI_EDW_INV_DAILY_STAT_FSTG
12.1.1
owner:OPI, object_type:TABLE, fnd_design_data:OPI.OPI_EDW_INV_DAILY_STAT_FSTG, object_name:OPI_EDW_INV_DAILY_STAT_FSTG, status:VALID,
-
VIEW: APPS.OPI_EDW_OPIINV_DAILY_STAT_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OPI.OPI_EDW_OPIINV_DAILY_STAT_FCV, object_name:OPI_EDW_OPIINV_DAILY_STAT_FCV, status:VALID,
-
PACKAGE BODY: APPS.OPI_EDW_INV_DAILY_STAT_F_C
12.1.1
-
VIEW: APPS.OPI_EDW_OPMINV_DAILY_STAT_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OPI.OPI_EDW_OPMINV_DAILY_STAT_FCV, object_name:OPI_EDW_OPMINV_DAILY_STAT_FCV, status:VALID,
-
PACKAGE BODY: APPS.OPI_EDW_OPMINV_DAILY_STAT_F_C
12.1.1
-
eTRM - OPI Tables and Views
12.1.1