Search Results beg_onh_val_b
Overview
APPS.OPI_EDW_OPMINV_DAILY_STAT_FCV is a reporting view in the Oracle E-Business Suite Process Manufacturing (OPM) module that surfaces daily inventory status balances for the Enterprise Data Warehouse (EDW) layer. The name follows the OPI_EDW naming convention, where "OPI" designates Process Manufacturing Intelligence, "EDW" designates the data warehouse staging/consumption layer, and "_FCV" indicates a foreign-key-conformed view. This view is intended for analytical reporting and integration into downstream warehouse fact tables rather than for transactional processing.
The view assembles a composite daily inventory status record per organization, warehouse, location, item, lot, and transaction date, drawing from OPM inventory summary tables (aliased OPMSUM) and joined to instance, item, organization, and currency metadata. Its central purpose is to present beginning, average, and ending on-hand quantities and values (in both base and global currencies) alongside inter-org transfer quantities and values — the classic daily inventory statistics extract used in inventory value reporting.
Notably, the source query references the column BEG_ONH_VAL_B, which is the documented search term (beg_onh_val_b). This column carries the beginning on-hand valuation in the base currency and is a key measure exposed by the view.
Underlying Base Objects
ETRM documents no referenced base objects for this view, meaning the metadata excerpt does not enumerate the tables underlying the SELECT. The view text, however, references several aliased sources:
- OPMSUM — the OPM daily inventory summary source providing CO_CODE, ORGN_CODE, WHSE_CODE, LOCATION, ITEM_ID, TRX_DATE, LOT_ID, and the on-hand quantity/value measures.
- GPM — the Process Manufacturing financial/book source supplying SOB_ID and BASE_CURRENCY_CODE.
- INST — instance metadata providing INSTANCE_CODE.
- MSI / IWM / ILM / IIM / MP — item master, inventory organization, locator, locator-control, and organization parameter sources used to resolve the item-org and locator foreign keys.
- UOM — unit of measure definitions for base UOM resolution.
The view also invokes EDW utility packages — EDW_UTIL, EDW_ORGANIZATION_PKG, EDW_ITEMS_PKG, edw_mtl_inventory_loc_pkg, EDW_TIME_PKG, and EDW_CURRENCY — to derive surrogate foreign keys and convert base-currency values into global currency.
Key Columns
- INV_DAILY_STATUS_PK — concatenated natural key composed of company, organization, warehouse, location, item, transaction date, lot, cost group, and instance.
- BASE_CURRENCY_FK, BASE_UOM_FK, INSTANCE_FK, INV_ORG_FK, ITEM_ORG_FK, LOCATOR_FK, LOT_FK, PRD_DATE_FK, TRX_DATE_FK — conformance foreign keys to the EDW dimensions.
- BEG_ONH_QTY / BEG_ONH_VAL_B / BEG_ONH_VAL_G — beginning on-hand quantity, base-currency value, and global-currency value. BEG_ONH_VAL_G is derived from BEG_ONH_VAL_B via EDW_CURRENCY.convert_global_amount.
- AVG_ONH_QTY, END_ONH_QTY / END_ONH_VAL_B / END_ONH_VAL_G — average and ending on-hand balances.
- FROM_ORG_QTY / FROM_ORG_VAL_B — inter-organization transfer quantities and base values.
- Numerous WIP and INT columns (AVG_WIP_*, BEG_INT_*, END_INT_*) are defined as NULL placeholders, reserved for future population.
Common Use Cases and Queries
This view supports daily inventory valuation reporting, period-to-date balance trending, and EDW fact loading. A representative query filtering ending on-hand valuation for a specific item and date range:
SELECT INV_ORG_FK, ITEM_ORG_FK, TRX_DATE_FK, BEG_ONH_QTY, BEG_ONH_VAL_B, END_ONH_VAL_B FROM APPS.OPI_EDW_OPMINV_DAILY_STAT_FCV WHERE ITEM_ORG_FK = :item AND TRX_DATE_FK BETWEEN :from_dt AND :to_dt;SELECT TRX_DATE_FK, SUM(END_ONH_VAL_G) FROM APPS.OPI_EDW_OPMINV_DAILY_STAT_FCV GROUP BY TRX_DATE_FK ORDER BY TRX_DATE_FK;SELECT BEG_ONH_VAL_B, BEG_ONH_VAL_G FROM APPS.OPI_EDW_OPMINV_DAILY_STAT_FCV WHERE LOT_FK IS NOT NULL;
Because it is a view rather than a table, queries should be restricted to bounded date ranges and specific organizations to limit the cost of the embedded currency conversion and key-derivation calls. The view is read-only and intended for reporting consumption.
-
APPS.OPI_EDW_IDS_CALC SQL Statements
12.1.1
-
VIEW: APPS.OPI_EDW_OPMINV_DAILY_STAT_FCV
12.1.1
-
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 ,
-
TABLE: OPI.OPI_PMI_INV_DAILY_STAT_TEMP
12.1.1
owner:OPI, object_type:TABLE, fnd_design_data:OPI.OPI_PMI_INV_DAILY_STAT_TEMP, object_name:OPI_PMI_INV_DAILY_STAT_TEMP, status:VALID,
-
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 ,
-
TABLE: OPI.OPI_PMI_INV_DAILY_STAT_SUM
12.1.1
owner:OPI, object_type:TABLE, fnd_design_data:OPI.OPI_PMI_INV_DAILY_STAT_SUM, object_name:OPI_PMI_INV_DAILY_STAT_SUM, status:VALID,
-
APPS.OPI_EDW_INV_DAILY_STAT_F_C SQL Statements
12.1.1
-
TABLE: OPI.OPI_EDW_IPS_NET_CHG
12.1.1
owner:OPI, object_type:TABLE, fnd_design_data:OPI.OPI_EDW_IPS_NET_CHG, object_name:OPI_EDW_IPS_NET_CHG, status:VALID,
-
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: APPS.OPI_EDW_OPIINV_DAILY_STAT_FCV
12.1.1
-
APPS.OPI_EDW_OPMINV_DAILY_STAT_F_C SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OPI_EDW_IDS_CALC
12.1.1
-
TABLE: OPI.OPI_IDS_PUSH_LOG
12.1.1
owner:OPI, object_type:TABLE, fnd_design_data:OPI.OPI_IDS_PUSH_LOG, object_name:OPI_IDS_PUSH_LOG, status:VALID,
-
TABLE: OPI.OPI_EDW_INV_PERD_STAT_F
12.1.1
owner:OPI, object_type:TABLE, fnd_design_data:OPI.OPI_EDW_INV_PERD_STAT_F, object_name:OPI_EDW_INV_PERD_STAT_F, status:VALID,
-
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_F
12.1.1
owner:OPI, object_type:TABLE, fnd_design_data:OPI.OPI_EDW_INV_DAILY_STAT_F, object_name:OPI_EDW_INV_DAILY_STAT_F, 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,
-
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,
-
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,
-
APPS.OPI_COLLECTION_HOOK_P SQL Statements
12.1.1
-
APPS.OPIMPXWI SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OPI_EDW_OPMINV_DAILY_STAT_F_C
12.1.1
-
APPS.OPI_PMI_IDS_SUMMARY SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OPI_COLLECTION_HOOK_P
12.1.1
-
APPS.OPIMPXWP SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OPI_PMI_IDS_SUMMARY
12.1.1
-
APPS.OPI_EDW_IDS_CALC dependencies on OPI_IDS_PUSH_LOG
12.1.1
-
PACKAGE BODY: APPS.OPIMPXWI
12.1.1
-
eTRM - OPI Tables and Views
12.1.1
-
PACKAGE BODY: APPS.OPIMPXWP
12.1.1