Search Results gmd_material_release_type
Overview
APPS.GME_MATERIAL_DETAILS_V is an Oracle E-Business Suite view that presents material detail records for process manufacturing batches and formulas. It is defined over the GME_MATERIAL_DETAILS synonym—the operational table that stores the individual material lines associated with a batch (GME_BATCH_HEADER) and formula lines—and enriches those records with descriptive attributes drawn from inventory, location, and lookup sources. Functionally, the view supplies the ingredient and by-product lines of a batch, including planned, WIP-planned, and actual quantities, requirement dates, phantom relationships, scaling parameters, and yield-contribution flags.
Because it consolidates foreign-key values into human-readable meanings (item number, description, line type, release type, locator, batch number), the view is well suited for reporting, ad hoc inquiry, and integration extracts. Its role in Oracle EBS 12.1.1 and 12.2.2 is to provide a denormalized, reporting-friendly projection of the material detail data without requiring the caller to construct the same set of joins manually.
Underlying Base Objects
The documented referenced objects are FND_DATE (PACKAGE), FND_TIMEZONES (PACKAGE), GEM_LOOKUPS (VIEW), GME_BATCH_HEADER (SYNONYM), GME_MATERIAL_DETAILS (SYNONYM), MTL_ITEM_LOCATIONS_KFV (VIEW), and MTL_SYSTEM_ITEMS_VL (VIEW). The primary driving object is GME_MATERIAL_DETAILS (aliased GMD), from which all material line columns originate. MTL_SYSTEM_ITEMS_VL is joined on INVENTORY_ITEM_ID and ORGANIZATION_ID to supply the concatenated item number and item description. MTL_ITEM_LOCATIONS_KFV provides the concatenated locator value. GME_BATCH_HEADER supplies the phantom batch number. GEM_LOOKUPS is joined multiple times to resolve lookup meanings for line type, release type, by-product type, and the yes/no decode flags. The FND_DATE and FND_TIMEZONES packages are used to convert the material requirement date into a display-formatted value using the server time zone.
Key Columns
- ORGANIZATION_ID, MATERIAL_DETAIL_ID, BATCH_ID, FORMULALINE_ID, INVENTORY_ITEM_ID — identifiers linking the material line to its organization, batch, formula line, and item.
- LINE_NO, LINE_TYPE, MEANING — the sequence number and line type code with its GMD_FORMULA_ITEM_TYPE lookup meaning.
- PLAN_QTY, WIP_PLAN_QTY, ACTUAL_QTY, ORIGINAL_QTY — planned, work-in-process planned, actual, and original quantities for the material line.
- SUBINVENTORY, LOCATOR_ID, LOCATOR, REVISION — storage location and revision information, with the concatenated locator description.
- MATERIAL_REQUIREMENT_DATE, MATERIAL_REQUIREMENT_DSPLY_DT — the requirement date and its time-zone-converted display equivalent.
- DTL_UM, ITEM_NO, ITEM_DESC — detail unit of measure, concatenated item number, and item description.
- RELEASE_TYPE, RELEASE_TYPE_MEANING — the material release type code and its GMD_MATERIAL_RELEASE_TYPE lookup meaning.
- PHANTOM_ID, PHANTOM_LINE_ID, PHANTOM_BATCH_NO, PHANTOM_TYPE — phantom relationship identifiers and the associated phantom batch number.
- SCRAP_FACTOR, SCALE_TYPE, ROUNDING_DIRECTION, SCALE_ROUNDING_VARIANCE, SCALE_MULTIPLE — scaling and rounding parameters.
- COST_ALLOC, CONTRIBUTE_YIELD_IND, CONTRIBUTE_STEP_QTY_IND, CONTRIBUTE_STEP_QTY_MEANING — cost allocation and yield/step quantity contribution indicators with decoded meanings.
- BY_PRODUCT_TYPE, BY_PRODUCT_TYPE_MEANING, DISPENSE_IND, DISPENSE_IND_MEANING, TEXT_CODE — by-product classification, dispensing flag, and text code.
Common Use Cases and Queries
A frequent requirement is to list all material lines for a given batch with their item descriptions and quantities. For example:
SELECT batch_id, line_no, item_no, item_desc, line_type, meaning,
plan_qty, actual_qty, dtl_um
FROM apps.gme_material_details_v
WHERE batch_id = :p_batch_id
ORDER BY line_no;
Another common scenario is reporting the release type of material lines, which relates directly to the search term “gmd_material_release_type.” The view exposes both the code (RELEASE_TYPE) and its decoded meaning (RELEASE_TYPE_MEANING):
SELECT batch_id, line_no, item_no, release_type, release_type_meaning FROM apps.gme_material_details_v WHERE release_type IS NOT NULL;
The view also supports analysis of yield and step quantity contribution, phantom material tracing, and by-product reporting. Because it decodes the yes/no indicators and lookups, it is convenient for operational dashboards and integration extracts where readable values are preferred over raw codes.
-
Lookup Type: GMD_MATERIAL_RELEASE_TYPE
12.1.1
product: GMD - Process Manufacturing Product Development , meaning: Material Release Type , description: Material Release Type ,
-
Lookup Type: GMD_MATERIAL_RELEASE_TYPE
12.2.2
product: GMD - Process Manufacturing Product Development , meaning: Material Release Type , description: Material Release Type ,
-
VIEW: APPS.GME_MATERIAL_DETAILS_V
12.2.2
-
VIEW: APPS.GME_STEP_MATERIAL_DETAILS_V
12.2.2
-
VIEW: APPS.GME_MATERIAL_DETAILS_V
12.1.1
-
VIEW: APPS.GME_STEP_MATERIAL_DETAILS_V
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
View: GME_MATERIAL_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_MATERIAL_DETAILS_V, object_name:GME_MATERIAL_DETAILS_V, status:VALID, product: GME - Process Manufacturing Process Execution , description: A supplementary view based on table gme_material_details. , implementation_dba_data: APPS.GME_MATERIAL_DETAILS_V ,
-
View: GME_MATERIAL_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_MATERIAL_DETAILS_V, object_name:GME_MATERIAL_DETAILS_V, status:VALID, product: GME - Process Manufacturing Process Execution , description: A supplementary view based on table gme_material_details. , implementation_dba_data: APPS.GME_MATERIAL_DETAILS_V ,
-
View: GME_STEP_MATERIAL_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_STEP_MATERIAL_DETAILS_V, object_name:GME_STEP_MATERIAL_DETAILS_V, status:VALID, product: GME - Process Manufacturing Process Execution , description: This view is used to retrieve Step Level Material Requirements for ERES event XML generation. , implementation_dba_data: APPS.GME_STEP_MATERIAL_DETAILS_V ,
-
View: GME_STEP_MATERIAL_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_STEP_MATERIAL_DETAILS_V, object_name:GME_STEP_MATERIAL_DETAILS_V, status:VALID, product: GME - Process Manufacturing Process Execution , description: This view is used to retrieve Step Level Material Requirements for ERES event XML generation. , implementation_dba_data: APPS.GME_STEP_MATERIAL_DETAILS_V ,
-
APPS.GME_MATERIAL_DETAIL_PVT SQL Statements
12.1.1
-
APPS.GME_MATERIAL_DETAIL_PVT SQL Statements
12.2.2
-
APPS.GME_MATERIAL_DETAIL_PVT dependencies on GEM_LOOKUP_VALUES
12.1.1
-
APPS.GME_MATERIAL_DETAIL_PVT dependencies on GEM_LOOKUP_VALUES
12.2.2
-
PACKAGE BODY: APPS.GME_MATERIAL_DETAIL_PVT
12.1.1
-
PACKAGE BODY: APPS.GME_MATERIAL_DETAIL_PVT
12.2.2