Search Results avg_int_val_b
Overview
OPI.OPI_EDW_IPS_NET_CHG is an interface-layer staging table owned by the OPI (Oracle Process/Inventory Intelligence) schema and stored in the APPS_TS_INTERFACE tablespace. It holds net change inventory position data extracted from Oracle Inventory for consumption by the Oracle E-Business Suite data warehouse and embedded analytics (Daily Business Intelligence for Supply Chain and related IPS — Inventory Planning and Shipping — subject areas). Each row represents a net change snapshot for a combination of inventory organization, item, locator, lot, cost group, and accounting period, expressed in both quantity, base currency value (the "_B" suffix columns), and global/functional currency value (the "_G" suffix columns), which is directly relevant to the user's search term TOT_CUST_SHIP_VAL_G — the global-currency total customer shipment value.
Per the ETRM dependency metadata, the columns ROW_ID, CREATION_DATE, LAST_UPDATE_DATE, NETTABLE_FLAG, and the USER_ATTRIBUTE1–15 / USER_MEASURE1–5 / USER_FK1–5 extensibility columns confirm this is an ETL-controlled staging object built by Oracle's warehouse collection programs, not a transactional base table. The heuristic Data Vault classification mined from the FK structure is standalone, reflecting that the object behaves primarily as a denormalized satellite supplying measures rather than participating in a traditional hub/link/satellite network. Oracle flags this object as Oracle Internal Use Only: it is not supported for direct customer access except from standard Oracle Applications programs.
Key Information Stored
The table contains 99 documented columns. The most operationally significant, in the context of the searched value:
- ROW_ID (ROWID) — surrogate row identifier; the documented FK joins ROW_ID to CS_SYSTEMS_ALL_B_TEMP, which is unusual and worth validating in any custom code.
- TOT_CUST_SHIP_VAL_G / TOT_CUST_SHIP_VAL_B / TOT_CUST_SHIP_QTY — the total customer shipment value in global and base currency, and the corresponding shipped quantity. These are the columns matching the searched term.
- TOT_ISSUES_VAL_G/B, TOT_ISSUES_QTY — total inventory issues (non-shipment consumption).
- TOTAL_REC_VAL_G/B, TOTAL_REC_QTY — total receipts for the period.
- PO_DEL_VAL_G/B, PO_DEL_QTY — purchase order delivery quantities and values.
- INV_ADJ_VAL_G/B, INV_ADJ_QTY — inventory adjustment values and quantities.
- BEG_* / END_* groups (BEG_ONH_QTY, END_ONH_QTY, BEG_WIP_QTY, END_INT_QTY, and their _VAL_B/_VAL_G variants) — beginning and ending on-hand, WIP, and intransit balances that frame the net change period.
- FROM_ORG_VAL_G/B, TO_ORG_VAL_G/B — inter-organization transfer activity mirrored on the shipping and receiving side.
- INV_ORG_FK_KEY, ITEM_ORG_FK_KEY, LOCATOR_FK_KEY, LOT_FK_KEY, COST_GROUP, BASE_CURRENCY_FK_KEY, BASE_UOM_FK_KEY — the business-key dimensions that, combined, define the grain of each row.
- PRD_DATE_FK_KEY, INV_PERIOD_STATUS_PK, NETTABLE_FLAG — period and netting control columns that govern which rows the warehouse load program consumes.
- ITEM_STATUS, ITEM_TYPE — descriptive attributes used in warehouse slicing and filtering.
Common Use Cases and Queries
Typical usage is warehouse-load validation, reconciliation of shipped-to-customer value against GL or AR, and ad-hoc inventory turn / shipment reporting. A representative query pattern:
- Aggregate customer shipment value by period and organization:
SELECT INV_ORG_FK_KEY, PRD_DATE_FK_KEY, SUM(TOT_CUST_SHIP_VAL_G) FROM OPI.OPI_EDW_IPS_NET_CHG WHERE NETTABLE_FLAG = 'Y' GROUP BY INV_ORG_FK_KEY, PRD_DATE_FK_KEY; - Compare base versus global currency measures to detect exchange-rate setup gaps:
SELECT INV_ORG_FK_KEY, SUM(TOT_CUST_SHIP_VAL_B - TOT_CUST_SHIP_VAL_G) FROM OPI.OPI_EDW_IPS_NET_CHG GROUP BY INV_ORG_FK_KEY; - Reconcile beginning-plus-activity-minus-ending balances using BEG_ONH_QTY, TOTAL_REC_QTY, TOT_ISSUES_QTY, TOT_CUST_SHIP_QTY, and END_ONH_QTY.
- Filter by INSTANCE_FK_KEY or INV_PERIOD_STATUS_PK_KEY to isolate a specific warehouse instance or accounting period during ETL troubleshooting.
Related Objects
- CS_SYSTEMS_ALL_B_TEMP — referenced by the documented FK OPI_EDW_IPS_NET_CHG.ROW_ID → CS_SYSTEMS_ALL_B_TEMP; the joining column is ROW_ID.
- OPI.OPI_EDW_INV_ORG_D and other OPI EDW dimension tables — resolved via INV_ORG_FK_KEY and ITEM_ORG_FK_KEY.
- OPI.OPI_EDW_ITEM_D / OPI_EDW_LOCATOR_D / OPI_EDW_LOT_D — dimension lookups for ITEM_ORG_FK_KEY, LOCATOR_FK_KEY, and LOT_FK_KEY.
- OPI.OPI_EDW_PERIOD_D — resolves PRD_DATE_FK_KEY.
- OPI.OPI_EDW_CURRENCY_D — resolves BASE_CURRENCY_FK_KEY for _B and _G measure interpretation.
- OPI.OPI_EDW_IPS_FACTS (or equivalent IPS summary/fact tables) — the downstream aggregation targets loaded from this staging interface by the standard OPI collection programs.
Because the object is documented as Oracle Internal Use Only, integration should be attempted only through Oracle's standard collection and reporting programs rather than by direct SQL against this table.
-
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,
-
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 ,
-
VIEW: APPS.OPI_EDW_OPIINV_DAILY_STAT_FCV
12.1.1
-
APPS.OPI_EDW_OPMINV_DAILY_STAT_F_C SQL Statements
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,
-
VIEW: APPS.OPI_EDW_OPMINV_DAILY_STAT_FCV
12.1.1
-
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,
-
PACKAGE BODY: APPS.OPI_EDW_OPMINV_DAILY_STAT_F_C
12.1.1
-
APPS.OPI_COLLECTION_HOOK_P SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OPI_COLLECTION_HOOK_P
12.1.1
-
APPS.OPIMPXWI SQL Statements
12.1.1
-
APPS.OPI_EDW_INV_DAILY_STAT_F_C dependencies on OPI_EDW_INV_DAILY_STAT_FSTG
12.1.1
-
APPS.OPI_COLLECTION_HOOK_P dependencies on OPI_EDW_INV_PERD_STAT_F
12.1.1
-
APPS.OPI_EDW_OPMINV_DAILY_STAT_F_C dependencies on OPI_EDW_INV_DAILY_STAT_FSTG
12.1.1
-
eTRM - OPI Tables and Views
12.1.1
-
APPS.OPI_COLLECTION_HOOK_P dependencies on OPI_EDW_IPS_NET_CHG
12.1.1
-
APPS.OPI_EDW_INV_DAILY_STAT_F_C dependencies on EDW_LOG
12.1.1
-
PACKAGE BODY: APPS.OPIMPXWI
12.1.1