Search Results uom_fk
Overview
OPI_EDW_OPI_RES_UTIL_FCV is a source view owned by the APPS schema in Oracle E-Business Suite, defined under the OPI (Operations Intelligence) product family. It is documented in ETRM for both 12.1.1 and 12.2.2 as VALID. Its stated purpose is to serve as the source view for extracting job-resource data from the Discrete Manufacturing source tables, feeding the Operations Intelligence / Enterprise Data Warehouse (EDW) star-schema model.
The object is a flat, denormalized "FCV" (fact/collection view) rather than a user-facing inquiry screen. It presents resource utilization records in the surrogate-key form expected by the EDW loaders, and it is consumed downstream by OPI fact loads and by customer-built BI extract programs. In the context of the search term uom_fk, this view is significant because it exposes UOM as a foreign key column rather than a descriptive code, so the raw column value must be joined to a UOM dimension to obtain any human-readable meaning.
Underlying Base Objects
The documented view text defines the view over two base objects:
- OPI_EDW_RES_UTIL_PUSH_LOG (aliased
LOG) — the primary staging/push log holding discrete manufacturing resource utilization data such as resource code, department code, organization code, transaction date, SOB identifier, UOM, actual resource usage and available resource hours. This table supplies nearly every meaningful column in the view. - EDW_LOCAL_INSTANCE (aliased
INST) — the EDW instance registry, contributingINSTANCE_CODEused to stamp the instance key and to build composite surrogate keys.
ETRM documents no further referenced base objects, and the view performs no joins beyond the implicit cross join of these two sources; the concatenation logic constructs the EDW surrogate identifiers inline. The TRX_DATE_FK value is derived by calling EDW_TIME_PKG.CAL_DAY_FK with the transaction date, SOB identifier and instance code. The view carries Oracle's Proprietary, Confidential Information marking, and none of the columns are sourced from a documented UOM master table — UOM_FK is passed through verbatim from LOG.UOM.
Key Columns
- RES_UTIL_PK — surrogate key built as
RES_UTIL_PK || '-' || INSTANCE_CODE || '-OPI'. - LOCATOR_FK — inventory locator surrogate built from organization code, instance code and the literal
-PLNT. - RES_FK — resource foreign key composed of resource code, department code, organization code and instance code.
- TRX_DATE_FK — date dimension foreign key produced by
EDW_TIME_PKG.CAL_DAY_FK. - UOM_FK — the unit-of-measure foreign key. It is mapped directly from
LOG.UOMand therefore stores the UOM code or identifier used by the source transaction; it is a dimension pointer, not a descriptive string, and must be resolved against the UOM dimension to render quantities in context. - INSTANCE_FK — the EDW instance identifier from
EDW_LOCAL_INSTANCE. - ACT_RES_USAGE / AVAIL_RES — actual resource usage and available resource capacity for the transaction.
- DEPARTMENT, TRX_DATE — descriptive department code and the raw transaction date.
- USER_FK1–5, USER_MEASURE1–5 — placeholders populated with the literal
'NA_EDW'and NULL respectively in the documented definition. - USER_ATTRIBUTE1–15 and LAST_UPDATE_DATE — present for EDW load compatibility; the documented view text returns NULL for these.
Common Use Cases and Queries
Typical usage is within OPI extraction and reconciliation work. A frequent requirement is verifying that UOM_FK values resolve correctly against the UOM dimension before fact loading:
- UOM validation — identifying transactions whose UOM foreign key has no matching dimension row, which indicates a missing or stale UOM member.
- Resource utilization trending — aggregating
ACT_RES_USAGEversusAVAIL_RESbyRES_FK,DEPARTMENTandTRX_DATE_FK. - Load reconciliation — comparing view row counts and key concatenations against the OPI fact tables.
Example query resolving the UOM foreign key:
SELECT r.RES_UTIL_PK, r.RES_FK, r.UOM_FK, r.DEPARTMENT, r.TRX_DATE, r.ACT_RES_USAGE, r.AVAIL_RES FROM APPS.OPI_EDW_OPI_RES_UTIL_FCV r WHERE r.UOM_FK IS NULL OR NOT EXISTS (SELECT 1 FROM <UOM_DIM> u WHERE u.UOM_FK = r.UOM_FK);
Example aggregation by resource and period:
SELECT r.RES_FK, r.UOM_FK, r.TRX_DATE_FK, SUM(r.ACT_RES_USAGE) ACT_USAGE, SUM(r.AVAIL_RES) AVAIL FROM APPS.OPI_EDW_OPI_RES_UTIL_FCV r GROUP BY r.RES_FK, r.UOM_FK, r.TRX_DATE_FK;
Because the view returns NULL for the user-defined attribute columns and literal 'NA_EDW' for the user foreign keys, queries should not depend on those columns for business logic; the operative measures are ACT_RES_USAGE and AVAIL_RES, qualified by the UOM_FK, RES_FK, LOCATOR_FK and TRX_DATE_FK keys.
-
View: OPI_EDW_OPI_RES_UTIL_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OPI.OPI_EDW_OPI_RES_UTIL_FCV, object_name:OPI_EDW_OPI_RES_UTIL_FCV, status:VALID, product: OPI - Operations Intelligence , description: This is the source view for extracting job-resource data from the Discrete Manufacturing source tables. , implementation_dba_data: APPS.OPI_EDW_OPI_RES_UTIL_FCV ,
-
VIEW: APPS.OPI_EDW_OPI_RES_UTIL_FCV
12.1.1
-
View: OPI_EDW_OPI_RES_UTIL_FCV
12.2.2
product: OPI - Operations Intelligence (Obsolete) , description: This is the source view for extracting job-resource data from the Discrete Manufacturing source tables. , implementation_dba_data: Not implemented in this database ,
-
APPS.OPI_EDW_OPM_RES_UTIL_F_C SQL Statements
12.1.1
-
APPS.OPI_EDW_OPI_RES_UTIL_F_C SQL Statements
12.1.1
-
View: BIM_EDW_EVTFRCST_FCV
12.1.1
product: BIM - Marketing Intelligence , implementation_dba_data: Not implemented in this database ,
-
View: BIM_EDW_OPRNTIES_FCV
12.1.1
product: BIM - Marketing Intelligence , implementation_dba_data: Not implemented in this database ,
-
View: BIM_EDW_LEADS_FCV
12.2.2
product: BIM - Marketing Intelligence(Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.FII_AR_TRX_DIST_F_C SQL Statements
12.1.1
-
View: BIM_EDW_LEADS_FCV
12.1.1
product: BIM - Marketing Intelligence , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.FII_AR_TRX_DIST_FCV
12.1.1
-
View: BIM_EDW_OPRNTIES_FCV
12.2.2
product: BIM - Marketing Intelligence(Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIM_EDW_EVTFRCST_FCV
12.2.2
product: BIM - Marketing Intelligence(Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIM_EDW_CMPFRCST_FCV
12.1.1
product: BIM - Marketing Intelligence , implementation_dba_data: Not implemented in this database ,
-
View: BIM_EDW_CMPFRCST_FCV
12.2.2
product: BIM - Marketing Intelligence(Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: FII_AR_TRX_DIST_FCV
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: Internal view used for warehouse data extraction , implementation_dba_data: Not implemented in this database ,
-
View: FII_AR_TRX_DIST_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AR_TRX_DIST_FCV, object_name:FII_AR_TRX_DIST_FCV, status:VALID, product: FII - Financial Intelligence , description: Internal view used for warehouse data extraction , implementation_dba_data: APPS.FII_AR_TRX_DIST_FCV ,
-
VIEW: APPS.OPI_EDW_OPI_RES_UTIL_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OPI.OPI_EDW_OPI_RES_UTIL_FCV, object_name:OPI_EDW_OPI_RES_UTIL_FCV, status:VALID,
-
VIEW: APPS.OPI_EDW_OPM_RES_UTIL_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OPI.OPI_EDW_OPM_RES_UTIL_FCV, object_name:OPI_EDW_OPM_RES_UTIL_FCV, status:VALID,
-
View: FII_AR_E_REVENUE_FCV
12.1.1
product: FII - Financial Intelligence , description: FII_AR_E_REVENUE_FCV is the collection view for FII_AR_E_REVENUE_F fact , implementation_dba_data: Not implemented in this database ,
-
View: FII_AR_E_REVENUE_FCV
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: FII_AR_E_REVENUE_FCV is the collection view for FII_AR_E_REVENUE_F fact , implementation_dba_data: Not implemented in this database ,
-
TABLE: OPI.OPI_EDW_RES_UTIL_FSTG
12.1.1
owner:OPI, object_type:TABLE, fnd_design_data:OPI.OPI_EDW_RES_UTIL_FSTG, object_name:OPI_EDW_RES_UTIL_FSTG, status:VALID,
-
PACKAGE BODY: APPS.OPI_EDW_OPM_RES_UTIL_F_C
12.1.1
-
View: OPI_EDW_OPM_RES_UTIL_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OPI.OPI_EDW_OPM_RES_UTIL_FCV, object_name:OPI_EDW_OPM_RES_UTIL_FCV, status:VALID, product: OPI - Operations Intelligence , description: This view contains the extraction logic for data to the Resource Utilization fact from process manufacturing side. , implementation_dba_data: APPS.OPI_EDW_OPM_RES_UTIL_FCV ,
-
View: OPI_EDW_OPM_RES_UTIL_FCV
12.2.2
product: OPI - Operations Intelligence (Obsolete) , description: This view contains the extraction logic for data to the Resource Utilization fact from process manufacturing side. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.FII_AR_TRX_DIST_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AR_TRX_DIST_FCV, object_name:FII_AR_TRX_DIST_FCV, status:VALID,
-
APPS.FII_AR_TRX_DIST_F_D SQL Statements
12.1.1
-
TABLE: BIM.BIM_EDW_LEADS_FSTG
12.1.1
owner:BIM, object_type:TABLE, fnd_design_data:BIM.BIM_EDW_LEADS_FSTG, object_name:BIM_EDW_LEADS_FSTG, status:VALID,
-
TABLE: BIM.BIM_EDW_OPRNTIES_FSTG
12.1.1
owner:BIM, object_type:TABLE, fnd_design_data:BIM.BIM_EDW_OPRNTIES_FSTG, object_name:BIM_EDW_OPRNTIES_FSTG, status:VALID,
-
TABLE: BIM.BIM_EDW_CMPFRCST_FSTG
12.1.1
owner:BIM, object_type:TABLE, fnd_design_data:BIM.BIM_EDW_CMPFRCST_FSTG, object_name:BIM_EDW_CMPFRCST_FSTG, status:VALID,
-
PACKAGE BODY: APPS.OPI_EDW_OPI_RES_UTIL_F_C
12.1.1
-
TABLE: BIM.BIM_EDW_EVTFRCST_FSTG
12.1.1
owner:BIM, object_type:TABLE, fnd_design_data:BIM.BIM_EDW_EVTFRCST_FSTG, object_name:BIM_EDW_EVTFRCST_FSTG, status:VALID,
-
TABLE: FII.FII_E_REVENUE_FSTG
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_E_REVENUE_FSTG, object_name:FII_E_REVENUE_FSTG, status:VALID,
-
PACKAGE BODY: APPS.OPI_EDW_RES_UTIL_F_SZ
12.1.1
-
PACKAGE BODY: APPS.FII_AR_TRX_DIST_F_C
12.1.1
-
PACKAGE BODY: APPS.FII_AR_TRX_DIST_F_D
12.1.1
-
VIEW: APPS.FIIBV_AR_TRX_DIST_FCV
12.1.1
owner:APPS, object_type:VIEW, object_name:FIIBV_AR_TRX_DIST_FCV, status:VALID,
-
TABLE: FII.FII_AR_TRX_DIST_FSTG
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_AR_TRX_DIST_FSTG, object_name:FII_AR_TRX_DIST_FSTG, status:VALID,
-
PACKAGE BODY: APPS.OPI_EDW_JOB_DETAIL_F_SZ
12.1.1
-
APPS.OPI_EDW_JOB_DETAIL_F_SZ dependencies on OPI_EDW_JOB_DETAIL_F_SZ
12.1.1
-
APPS.OPI_EDW_RES_UTIL_F_SZ dependencies on EDW_TIME_PKG
12.1.1
-
APPS.FII_AR_TRX_DIST_F_C dependencies on FII_AR_TRX_DIST_FSTG
12.1.1
-
eTRM - OPI Tables and Views
12.1.1
-
eTRM - BIM Tables and Views
12.1.1
description: Target segment level table . ,
-
eTRM - FII Tables and Views
12.1.1
description: This table stores the mapping of leaf nodes from pruned dimension to nodes in the child value sets ,