Search Results gmd_mbr_step_oprn_v1
Overview
GMD_MBR_STEP_OPRN_V1 is an APPS-owned database view in Oracle E-Business Suite 12.1.1 and 12.2.2, belonging to the GMD (Process Manufacturing Product Development) product family. Its documented purpose is to retrieve step-level routing information for the generation of Master Batch Record (MBR) XML output. The view consolidates data from recipe headers, routing detail lines, and operation definitions into a single, denormalized result set that can be consumed directly by XML generation routines, concurrent programs, and integration interfaces that export master batch records.
Because the view is defined in the APPS schema and marked VALID, it is a supported read-only access point. It shields callers from the join logic among GMD_RECIPES_B, FM_ROUT_DTL, and GMD_OPERATIONS, and it formats date columns for display and timezone consistency. This makes it particularly useful for reporting and integration scenarios where routing steps must be emitted alongside their governing operation attributes.
Underlying Base Objects
The view text joins three primary base objects and also invokes two Oracle EBS utility packages for date formatting:
- GMD_RECIPES_B (SYNONYM) — the recipe header table. It supplies RECIPE_ID and links to routing detail through ROUTING_ID.
- FM_ROUT_DTL (SYNONYM) — the routing detail table. It provides ROUTINGSTEP_NO, ROUTINGSTEP_ID, OPRN_ID, STEP_QTY, STEPRELEASE_TYPE, and MINIMUM_TRANSFER_QTY.
- GMD_OPERATIONS (SYNONYM) — the operation definition table. It supplies OPRN_NO, OPRN_VERS, PROCESS_QTY_UOM, OPRN_CLASS, INACTIVE_IND, effective dates, OPERATION_STATUS, OWNER_ORGANIZATION_ID, and OPRN_DESC.
- FND_DATE (PACKAGE) — used via DATE_TO_DISPLAYDT to convert operation effective dates into display-formatted values.
- FND_TIMEZONES (PACKAGE) — used via GET_SERVER_TIMEZONE_CODE to supply the timezone context for the date conversion.
The join condition equates ROUT_DTL.OPRN_ID to OPRN.OPRN_ID and RCP.ROUTING_ID to ROUT_DTL.ROUTING_ID, and the result set is ordered by ROUT_DTL.ROUTINGSTEP_NO to preserve step sequence.
Key Columns
- ROUTING_ID, ROUTINGSTEP_NO, ROUTINGSTEP_ID — identify the routing and the specific routing step, in sequence order.
- OPRN_ID, OPRN_NO, OPRN_VERS, OPRN_DESC — identify and describe the operation attached to the step.
- STEP_QTY — the quantity associated with the routing step; central to the artifact for users searching this term.
- STEPRELEASE_TYPE and MINIMUM_TRANSFER_QTY — control how material is released or transferred at the step.
- PROCESS_QTY_UOM — unit of measure for the process quantity.
- OPRN_CLASS, OPERATION_STATUS, INACTIVE_IND — classify the operation and indicate its active status.
- EFFECTIVE_START_DATE, EFFECTIVE_END_DATE — operation validity dates converted to display format using the server timezone.
- OWNER_ORGANIZATION_ID — the organization that owns the operation.
- RECIPE_ID and ENTITY_KEY — ENTITY_KEY is a concatenation of RECIPE_ID, ROUTINGSTEP_ID, and OPRN_ID, providing a unique identifier for each step-operation row.
Common Use Cases and Queries
The view is typically queried to extract step details for a given recipe or to feed MBR XML generation. A basic query returning the step sequence and step quantity is:
SELECT routing_id, routingstep_no, oprn_no, step_qty, process_qty_uom, minimum_transfer_qty FROM gmd_mbr_step_oprn_v1 WHERE recipe_id = :p_recipe_id ORDER BY routingstep_no;
A second common pattern filters out inactive operations and returns display dates:
SELECT entity_key, oprn_desc, step_qty, effective_start_date, effective_end_date FROM gmd_mbr_step_oprn_v1 WHERE inactive_ind = 'N' AND routing_id = :p_routing_id;
Because the view already resolves the recipe-to-routing-to-operation relationship and formats effective dates, it reduces the query complexity otherwise required against the base tables and is well suited to concurrent program data sources and XML publisher reports.
-
View: GMD_MBR_STEP_OPRN_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_MBR_STEP_OPRN_V1, object_name:GMD_MBR_STEP_OPRN_V1, status:VALID, product: GMD - Process Manufacturing Product Development , description: This view is used to retrieve Step information to generate Master Batch Record XML , implementation_dba_data: APPS.GMD_MBR_STEP_OPRN_V1 ,
-
View: GMD_MBR_STEP_OPRN_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_MBR_STEP_OPRN_V1, object_name:GMD_MBR_STEP_OPRN_V1, status:VALID, product: GMD - Process Manufacturing Product Development , description: This view is used to retrieve Step information to generate Master Batch Record XML , implementation_dba_data: APPS.GMD_MBR_STEP_OPRN_V1 ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.GMD_OPERATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GMD_OPERATIONS, status:VALID,
-
SYNONYM: APPS.FM_ROUT_DTL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FM_ROUT_DTL, status:VALID,
-
SYNONYM: APPS.FM_ROUT_DTL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FM_ROUT_DTL, status:VALID,
-
SYNONYM: APPS.GMD_OPERATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GMD_OPERATIONS, status:VALID,
-
PACKAGE: APPS.FND_TIMEZONES
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_TIMEZONES, status:VALID,
-
PACKAGE: APPS.FND_TIMEZONES
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_TIMEZONES, status:VALID,
-
SYNONYM: APPS.GMD_RECIPES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GMD_RECIPES_B, status:VALID,
-
VIEW: APPS.GMD_MBR_STEP_OPRN_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_MBR_STEP_OPRN_V1, object_name:GMD_MBR_STEP_OPRN_V1, status:VALID,
-
VIEW: APPS.GMD_MBR_STEP_OPRN_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_MBR_STEP_OPRN_V1, object_name:GMD_MBR_STEP_OPRN_V1, status:VALID,
-
SYNONYM: APPS.GMD_RECIPES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GMD_RECIPES_B, status:VALID,
-
PACKAGE: APPS.FND_DATE
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_DATE, status:VALID,
-
PACKAGE: APPS.FND_DATE
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_DATE, status:VALID,
-
eTRM - GMD Tables and Views
12.2.2
description: QC Module Text Lines. Descriptive text for all tables in this module. ,
-
eTRM - GMD Tables and Views
12.1.1
description: QC Module Text Lines. Descriptive text for all tables in this module. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
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. ,