Search Results contiguous_ind
Overview
GMD_RECIPES_VL is a validation-level (VL) view owned by the APPS schema in Oracle E-Business Suite Release 12.1.1 and 12.2.2. It belongs to the Process Manufacturing Product Development module (GMD) and exposes recipe header information maintained within Oracle Process Manufacturing. The view joins the base recipe entity to its translation table, presenting translated descriptive text alongside the operational and descriptive attributes of each recipe, so that consumers see the recipe description in the session's current language.
Because it is a VL view, it is the canonical read interface for recipe headers in forms, concurrent programs, and custom reports. It abstracts the underlying base/translation table split, meaning report authors query a single object rather than performing the join manually. This pattern is standard across EBS for translatable entities and makes GMD_RECIPES_VL suitable for both online form data sources and ad hoc reporting.
Underlying Base Objects
The view is defined over two synonym-referenced base objects:
- GMD_RECIPES_B — the base table holding non-translatable recipe attributes (aliased B in the view text).
- GMD_RECIPES_TL — the translation table holding the language-dependent RECIPE_DESCRIPTION (aliased T).
The join predicate is B.RECIPE_ID = T.RECIPE_ID combined with T.LANGUAGE = USERENV('LANG'), so each row returned represents one recipe version in the language of the current session. The view also surfaces B.ROWID as ROW_ID, which is significant because a pure join of two tables would otherwise not expose an updatable row identifier.
Key Columns
- RECIPE_ID — primary identifier of the recipe; the join key to both base objects.
- RECIPE_NO, RECIPE_VERSION — the recipe number and version, which together identify a specific formulation iteration.
- RECIPE_DESCRIPTION — the translated description drawn from GMD_RECIPES_TL.
- OWNER_ORGANIZATION_ID — the organization that owns the recipe.
- CREATION_ORGANIZATION_ID — the organization in which the recipe was originally created; this is the column most often filtered on when users need to locate recipes originating from a specific plant or business unit.
- FORMULA_ID, ROUTING_ID — links to the associated formula and routing.
- RECIPE_STATUS, RECIPE_TYPE, ENHANCED_PI_IND, CONTIGUOUS_IND — status and classification flags controlling processing behavior.
- MASTER_RECIPE_ID — reference to a parent/master recipe where applicable.
- ATTRIBUTE1–ATTRIBUTE30, ATTRIBUTE_CATEGORY — the standard EBS descriptive flexfield segments.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — the standard WHO audit columns.
- DELETE_MARK — the soft-delete flag; active records typically carry a value of 0 or 1 depending on convention.
Common Use Cases and Queries
The view is typically used to report recipe headers by organization, to drive LOVs in custom extensions, and to reconcile recipes against their formulas and routings. A common requirement is finding all recipes created within a given organization, which maps directly to the CREATION_ORGANIZATION_ID column the user searched for:
- List active recipes for an organization:
SELECT recipe_id, recipe_no, recipe_version, recipe_description FROM gmd_recipes_vl WHERE creation_organization_id = :org_id AND delete_mark = 0 ORDER BY recipe_no, recipe_version; - Join to the formula for traceability:
SELECT r.recipe_no, r.recipe_version, r.formula_id FROM gmd_recipes_vl r WHERE r.creation_organization_id = :org_id; - Audit recently changed recipes:
SELECT recipe_no, recipe_version, last_updated_by, last_update_date FROM gmd_recipes_vl WHERE last_update_date > SYSDATE - 30;
Because RECIPE_DESCRIPTION is language-sensitive, queries executed under different session languages return the corresponding translation, so no additional language filter is required in consumer SQL.
-
View: GMD_RECIPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_RECIPES_VL, object_name:GMD_RECIPES_VL, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_RECIPES_VL ,
-
View: GMD_RECIPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_RECIPES_VL, object_name:GMD_RECIPES_VL, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_RECIPES_VL ,
-
View: GMD_ROUTINGS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_ROUTINGS_VL, object_name:GMD_ROUTINGS_VL, status:VALID, product: GMD - Process Manufacturing Product Development , description: View for Routing header Base and translation tables , implementation_dba_data: APPS.GMD_ROUTINGS_VL ,
-
View: GMD_MBR_RECIPE_HEADER_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_MBR_RECIPE_HEADER_V1, object_name:GMD_MBR_RECIPE_HEADER_V1, status:VALID, product: GMD - Process Manufacturing Product Development , description: This view is used to generate XML for Recipe Header information in Master Batch Record Generation , implementation_dba_data: APPS.GMD_MBR_RECIPE_HEADER_V1 ,
-
View: GMD_MBR_RECIPE_HEADER_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_MBR_RECIPE_HEADER_V1, object_name:GMD_MBR_RECIPE_HEADER_V1, status:VALID, product: GMD - Process Manufacturing Product Development , description: This view is used to generate XML for Recipe Header information in Master Batch Record Generation , implementation_dba_data: APPS.GMD_MBR_RECIPE_HEADER_V1 ,
-
View: GMD_ROUTINGS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_ROUTINGS_VL, object_name:GMD_ROUTINGS_VL, status:VALID, product: GMD - Process Manufacturing Product Development , description: View for Routing header Base and translation tables , implementation_dba_data: APPS.GMD_ROUTINGS_VL ,