Search Results original_item_flag
Overview
APPS.GMF_MATERIAL_EFFECTIVITIES_VW1 is a reporting and integration view in the Oracle E-Business Suite Process Manufacturing (OPM) module. It exposes material effectivity records associated with formulas, providing a consolidated, query-ready projection of the material effectivity data used throughout process manufacturing. In ETRM 12.1.1 and 12.2.2, this view serves as the APPS-owned interface through which forms, concurrent programs, and external integrations retrieve formula material line information without directly accessing the underlying base object.
A distinguishing feature of this view is that it is not a simple pass-through projection. It applies an analytic ranking function and a row-filtering construct, meaning consumers receive a pre-ranked, deterministic result set rather than raw effectivity rows. This design is significant because formula material effectivities can contain multiple candidate rows for the same formula line, and the view resolves which row should be treated as authoritative.
Underlying Base Objects
The documented base object referenced by GMF_MATERIAL_EFFECTIVITIES_VW1 is a single view: GMD_MATERIAL_EFFECTIVITIES_VW. The APPS view therefore layers directly on top of GMD_MATERIAL_EFFECTIVITIES_VW, and all columns exposed at the GMF level correspond to columns already present in the GMD view. The GMD view in turn draws from the underlying process manufacturing material effectivity tables, which store formula line material assignments, substitutions, and their effective date ranges.
The relationship is one of progressive refinement: the GMD view establishes the base column set, while GMF_MATERIAL_EFFECTIVITIES_VW1 adds ranking logic and standardizes the result set for application consumption. No additional joins or base tables are introduced at the GMF layer per the documented metadata; the only referenced base object is GMD_MATERIAL_EFFECTIVITIES_VW.
Key Columns
- FORMULA_ID / FORMULALINE_ID — Identify the owning formula and its line.
- LINE_TYPE / LINE_NO — Classify and sequence the line within the formula.
- ITEM_ID / LINE_ITEM_ID — The material and the associated line item reference.
- QTY / ITEM_UM / LINE_ITEM_QTY / LINE_ITEM_UOM / LINE_ITEM_PRIMARY_UOM — Quantity and unit-of-measure information at both material and line levels.
- ORIGINAL_ITEM_FLAG — Distinguishes the original item from substitutes; this column also drives the ranking order.
- SUB_ORIGINAL_QTY / SUB_REPLACE_QTY — Quantities governing substitution relationships.
- SCALE_TYPE / SCALE_MULTIPLE / SCALE_ROUNDING_VARIANCE / ROUNDING_DIRECTION — Scaling and rounding behavior for the material.
- SCRAP_FACTOR / CONTRIBUTE_YIELD_IND / COST_ALLOC / PHANTOM_TYPE — Yield, cost allocation, and phantom characteristics.
- START_DATE / END_DATE — Effectivity date range.
- RK — Analytic rank produced by RANK() OVER (PARTITION BY FORMULA_ID, LINE_TYPE, LINE_NO ORDER BY ORIGINAL_ITEM_FLAG, PREFERENCE).
Common Use Cases and Queries
Because the view pre-computes the RK column, the most common pattern is to filter for the top-ranked row per formula line, obtaining the preferred material effectivity. The ORIGINAL_ITEM_FLAG term in the ORDER BY ensures original items rank ahead of substitutes, subject to the preference value.
SELECT formula_id, formulaline_id, line_no, item_id, qty,
item_um, original_item_flag, rk
FROM apps.gmf_material_effectivities_vw1
WHERE formula_id = :p_formula_id
AND rk = 1;
Other practical scenarios include extracting all substitutes for a line by omitting the RK filter, reporting effectivity ranges using START_DATE and END_DATE, and supplying scaling or cost-allocation attributes to integration interfaces. When querying, standard APPS views are resolved through the APPS schema synonym convention in EBS 12.1.1 and 12.2.2, so no additional schema qualification is required for authorized responsibilities.
-
VIEW: APPS.GMF_MATERIAL_EFFECTIVITIES_VW1
12.2.2
-
VIEW: APPS.GMF_MATERIAL_EFFECTIVITIES_VW1
12.1.1
-
View: GMF_MATERIAL_EFFECTIVITIES_VW1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_MATERIAL_EFFECTIVITIES_VW1, object_name:GMF_MATERIAL_EFFECTIVITIES_VW1, status:VALID, product: GMF - Process Manufacturing Financials , description: This is a helper view for Item substitution for costing. , implementation_dba_data: APPS.GMF_MATERIAL_EFFECTIVITIES_VW1 ,
-
VIEW: APPS.GMD_MBR_STEP_MATERIAL_V1
12.1.1
-
VIEW: APPS.GMD_MBR_MATERIAL_V1
12.2.2
-
VIEW: APPS.GMD_MBR_MATERIAL_V1
12.1.1
-
VIEW: APPS.GMD_MBR_STEP_MATERIAL_V1
12.2.2
-
View: GMF_MATERIAL_EFFECTIVITIES_VW1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_MATERIAL_EFFECTIVITIES_VW1, object_name:GMF_MATERIAL_EFFECTIVITIES_VW1, status:VALID, product: GMF - Process Manufacturing Financials , description: This is a helper view for Item substitution for costing. , implementation_dba_data: APPS.GMF_MATERIAL_EFFECTIVITIES_VW1 ,
-
VIEW: APPS.GMD_MATERIAL_EFFECTIVITIES_VW
12.2.2
-
VIEW: APPS.GMD_MATERIAL_EFFECTIVITIES_VW
12.1.1
-
View: GMD_MBR_MATERIAL_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_MBR_MATERIAL_V1, object_name:GMD_MBR_MATERIAL_V1, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_MBR_MATERIAL_V1 ,
-
View: GMD_MATERIAL_EFFECTIVITIES_VW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_MATERIAL_EFFECTIVITIES_VW, object_name:GMD_MATERIAL_EFFECTIVITIES_VW, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_MATERIAL_EFFECTIVITIES_VW ,
-
View: GMD_MATERIAL_EFFECTIVITIES_VW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_MATERIAL_EFFECTIVITIES_VW, object_name:GMD_MATERIAL_EFFECTIVITIES_VW, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_MATERIAL_EFFECTIVITIES_VW ,
-
View: GMD_MBR_STEP_MATERIAL_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_MBR_STEP_MATERIAL_V1, object_name:GMD_MBR_STEP_MATERIAL_V1, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_MBR_STEP_MATERIAL_V1 ,
-
View: GMD_MBR_MATERIAL_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_MBR_MATERIAL_V1, object_name:GMD_MBR_MATERIAL_V1, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_MBR_MATERIAL_V1 ,
-
View: GMD_MBR_STEP_MATERIAL_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_MBR_STEP_MATERIAL_V1, object_name:GMD_MBR_STEP_MATERIAL_V1, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_MBR_STEP_MATERIAL_V1 ,
-
VIEW: APPS.GMF_MATERIAL_EFFECTIVITIES_VW1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_MATERIAL_EFFECTIVITIES_VW1, object_name:GMF_MATERIAL_EFFECTIVITIES_VW1, status:VALID,
-
VIEW: APPS.GMF_MATERIAL_EFFECTIVITIES_VW1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_MATERIAL_EFFECTIVITIES_VW1, object_name:GMF_MATERIAL_EFFECTIVITIES_VW1, status:VALID,
-
VIEW: APPS.GMD_MATERIAL_EFFECTIVITIES_VW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_MATERIAL_EFFECTIVITIES_VW, object_name:GMD_MATERIAL_EFFECTIVITIES_VW, status:VALID,
-
VIEW: APPS.GMD_MATERIAL_EFFECTIVITIES_VW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_MATERIAL_EFFECTIVITIES_VW, object_name:GMD_MATERIAL_EFFECTIVITIES_VW, status:VALID,
-
PACKAGE: APPS.MRP_ATP_PVT
12.1.1
-
PACKAGE: APPS.MRP_ATP_PVT
12.2.2
-
PACKAGE BODY: APPS.GMP_BOM_ROUTING_PKG
12.2.2
-
PACKAGE BODY: APPS.GMP_BOM_ROUTING_PKG
12.1.1
-
APPS.MSC_CL_GMP_UTILITY SQL Statements
12.1.1
-
PACKAGE BODY: APPS.MSC_CL_GMP_UTILITY
12.1.1
-
PACKAGE BODY: APPS.MSC_CL_GMP_UTILITY
12.2.2
-
APPS.MSC_ATP_PVT dependencies on MSC_SCH_WB
12.1.1
-
eTRM - GMF Tables and Views
12.1.1
description: Defines Third-Party software which has a supported interface to OPM. ,
-
APPS.MSC_ATP_PVT dependencies on MSC_SCH_WB
12.2.2
-
eTRM - GMF Tables and Views
12.2.2
description: Defines Third-Party software which has a supported interface to OPM. ,
-
eTRM - GMD Tables and Views
12.1.1
description: QC Module Text Lines. Descriptive text for all tables in this module. ,
-
eTRM - GMD Tables and Views
12.2.2
description: QC Module Text Lines. Descriptive text for all tables in this module. ,
-
PACKAGE BODY: APPS.MSC_ATP_PVT
12.1.1
-
PACKAGE BODY: APPS.MSC_ATP_PVT
12.2.2
-
APPS.MSC_ATP_PVT dependencies on MSC_ATP_PVT
12.1.1
-
APPS.MSC_ATP_PVT dependencies on MSC_ATP_PVT
12.2.2