Search Results inv_daily_status_pk
Overview
The table OPI.OPI_EDW_INV_DAILY_STAT_F is the Inventory Daily Status Fact table within the Oracle Operations Intelligence (OPI) product, delivered under the E-Business Suite 12.1.1 and 12.2.2 releases. It forms part of the OPI Enterprise Data Warehouse (EDW) star schema, storing periodic snapshots of inventory position and movement activity aggregated across organizations, items, locators, lots, and accounting periods. Each row captures a daily state of on-hand, intransit, and WIP balances alongside quantity and value measures expressed in both base and global currency, enabling trend, velocity, and valuation analytics without repeatedly querying transactional Inventory tables.
Under a heuristic Data Vault classification mined from its foreign key structure, this object is modeled as standalone, meaning it does not exhibit the strict hub/link/satellite relationships typically found in a normalized Data Vault. It operates instead as a classic Kimball-style fact table whose grain is defined by the combination of business keys and the period/date dimensions it references (PRD_DATE_FK_KEY, TRX_DATE_FK_KEY).
Key Information Stored
The physical schema documented for ETRM 12.1.1 contains 102 columns. The most analytically significant columns fall into three families: identity and keys, quantity measures, and value measures.
- INV_DAILY_STATUS_PK and INV_DAILY_STATUS_PK_KEY — components of the business-key unique index
OPI_EDW_INV_DAILY_STATUS_F_U2; INV_DAILY_STATUS_PK_KEY alone forms the surrogate primary key inOPI_EDW_INV_DAILY_STAT_F_PK. - INV_ORG_FK_KEY, ITEM_ORG_FK_KEY, LOCATOR_FK_KEY, LOT_FK_KEY — dimensional foreign keys pointing to inventory organization, item-organization, locator, and lot.
- PRD_DATE_FK_KEY and TRX_DATE_FK_KEY — period and transaction date dimension keys.
- BASE_CURRENCY_FK_KEY, BASE_UOM_FK_KEY, INSTANCE_FK_KEY — currency, unit of measure, and instance dimensions.
- BEG_ONH_QTY / END_ONH_QTY, BEG_INT_QTY / END_INT_QTY, BEG_WIP_QTY / END_WIP_QTY — opening and closing quantities for on-hand, intransit, and WIP.
- AVG_ONH_QTY, AVG_INT_QTY, AVG_WIP_QTY — period average quantities.
- TOTAL_REC_QTY, INV_ADJ_QTY, TOT_ISSUES_QTY, TOT_CUST_SHIP_QTY, PO_DEL_QTY, FROM_ORG_QTY, TO_ORG_QTY — movement transaction quantities.
- *_VAL_B and *_VAL_G pairs for each measure — values in base and global currency.
- ITEM_TYPE, ITEM_STATUS, COMMODITY_CODE, COST_GROUP, NETTABLE_FLAG, PERIOD_FLAG — attribute and reporting flags.
- USER_MEASURE1–5, USER_ATTRIBUTE1–15, USER_FK1–5_KEY — extensibility columns for customer-defined measures, attributes, and dimensions.
Common Use Cases and Queries
Typical reporting queries aggregate quantity or value measures by period, organization, or item, using the surrogate key for uniqueness. A common pattern joining the daily status key to a dimensional lookup is:
SELECT s.INV_DAILY_STATUS_PK, s.INV_ORG_FK_KEY,
s.END_ONH_QTY, s.END_ONH_VAL_B
FROM OPI.OPI_EDW_INV_DAILY_STAT_F s
WHERE s.PRD_DATE_FK_KEY = :period_key
AND s.END_ONH_QTY > 0;
Analysts use this table for inventory turn and velocity trending (comparing BEG_ONH_QTY to END_ONH_QTY over successive periods), on-hand valuation reports distinguishing BASE versus GLOBAL currency, WIP aging (BEG_WIP_QTY versus END_WIP_QTY), and intransit exposure analysis (AVG_INT_VAL_B). Because the "inv_daily_status_pk" search term maps directly to the key columns, lookups by that key are the most direct access path and are backed by the two unique indexes.
Related Objects
- OPI_EDW_INV_DAILY_STATUS_F_U2 — unique index enforcing the business key (INV_DAILY_STATUS_PK, INV_DAILY_STATUS_PK_KEY).
- OPI_EDW_INV_DAILY_STAT_F_PK — primary key index on INV_DAILY_STATUS_PK_KEY.
- Dimension tables referenced through INV_ORG_FK_KEY, ITEM_ORG_FK_KEY, PRD_DATE_FK_KEY, TRX_DATE_FK_KEY, and BASE_CURRENCY_FK_KEY within the OPI schema.
- Base Oracle Inventory transactional tables (MTL_ONHAND_QUANTITIES, MTL_MATERIAL_TRANSACTIONS) that feed this fact table.
- OPI ETL program units that populate OPI_EDW_INV_DAILY_STAT_F from source inventory tables.
-
APPS.OPI_EDW_OPMINV_DAILY_STAT_F_C SQL Statements
12.1.1
-
Table: 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, product: OPI - Operations Intelligence , description: Fact Table for the Inventory Daily Status Fact , implementation_dba_data: OPI.OPI_EDW_INV_DAILY_STAT_F ,
-
Table: OPI_EDW_INV_DAILY_STAT_F
12.2.2
product: OPI - Operations Intelligence (Obsolete) , description: Fact Table for the Inventory Daily Status Fact , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.OPI_EDW_OPMINV_DAILY_STAT_F_C
12.1.1
-
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 ,
-
APPS.OPI_EDW_INV_DAILY_STAT_F_C SQL Statements
12.1.1
-
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 ,
-
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_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: APPS.OPI_EDW_OPIINV_DAILY_STAT_FCV
12.1.1
-
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_OPMINV_DAILY_STAT_FCV
12.1.1
-
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,
-
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,
-
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,
-
APPS.OPI_EDW_OPMINV_DAILY_STAT_F_C dependencies on OPI_EDW_INV_DAILY_STAT_FSTG
12.1.1
-
APPS.OPI_EDW_OPMINV_DAILY_STAT_F_C dependencies on OPI_EDW_OPMINV_DAILY_STAT_FCV
12.1.1
-
APPS.OPI_EDW_OPMINV_DAILY_STAT_F_C dependencies on OPI_EDW_OPMINV_DAILY_STAT_INC
12.1.1
-
APPS.OPI_EDW_OPMINV_DAILY_STAT_F_C dependencies on EDW_LOG
12.1.1
-
eTRM - OPI Tables and Views
12.1.1
-
eTRM - OPI Tables and Views
12.1.1