Search Results gme_process_parameters
Overview
GME_PROCESS_PARAMETERS is a table in the GME schema (Process Manufacturing Process Execution) that stores the actual measured or recorded values of process parameters attached to a resource during batch execution. It is the transactional sibling to the parameter definition setup: where process parameter definitions specify target, minimum, and maximum tolerances for a resource, GME_PROCESS_PARAMETERS records what was actually observed against those definitions on a specific batch step activity and resource.
The table carries 49 documented columns, consistent with a transactional detail row that includes a full 30-column DESCRIPTIVE flexfield block plus standard WHO audit columns. Its primary key is GME_PROCESS_PARAMETERS_PK, defined on the single column PROCESS_PARAM_ID, a system-generated surrogate identifier.
The heuristic Data Vault classification mined from the foreign key structure is standalone, meaning the table does not participate in a classic hub-and-link pattern with other tables in the mined FK set. As a modeling suggestion, this implies the row is best treated as an independent transactional record keyed by its own surrogate, with its dimensional context (batch, step, resource, parameter) carried as descriptive foreign keys rather than as explicit hub references.
Key Information Stored
The most significant columns of GME_PROCESS_PARAMETERS are:
- PROCESS_PARAM_ID — Surrogate primary key, unique per parameter reading row.
- BATCH_ID — The batch execution context for the reading.
- BATCHSTEP_ID — The batch step within the batch.
- BATCHSTEP_ACTIVITY_ID — The specific step activity; this is the documented foreign key to GME_BATCH_STEP_ACTIVITIES.
- BATCHSTEP_RESOURCE_ID — The resource instance within the step activity to which the parameter belongs.
- RESOURCES — Resource identifier/name associated with the reading.
- PARAMETER_ID — The process parameter definition being measured.
- TARGET_VALUE, MINIMUM_VALUE, MAXIMUM_VALUE — Specification limits for the parameter at execution time.
- PARAMETER_UOM — Unit of measure for the parameter values.
- ACTUAL_VALUE — The recorded actual value, the primary payload of the row.
- DEVICE_ID — The device (if any) that captured the reading, supporting automated data collection.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE30 — Descriptive flexfield columns for customer-extension data.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard WHO audit columns.
Only PROCESS_PARAM_ID is documented as a unique index and therefore the sole business-key candidate; the remaining columns are descriptive or referential.
Common Use Cases and Queries
Typical usage centers on batch execution reporting, quality exception analysis, and electronic batch record (EBR) extraction. Analysts extract actual versus target values to identify out-of-tolerance process parameters and to satisfy regulatory traceability requirements.
A representative query retrieving all parameter readings for a batch, joined to the step activity, is:
SELECT p.process_param_id, p.batch_id, p.batchstep_id, p.batchstep_activity_id, p.parameter_id, p.actual_value, p.target_value, p.minimum_value, p.maximum_value, p.parameter_uom FROM gme.gme_process_parameters p WHERE p.batch_id = :batch_id ORDER BY p.batchstep_activity_id;
An exception report comparing actual against the specification window uses the same columns with a predicate such as WHERE p.actual_value NOT BETWEEN p.minimum_value AND p.maximum_value. Traceability reporting joins to GME_BATCH_STEP_ACTIVITIES on BATCHSTEP_ACTIVITY_ID to attach activity and operation context, and to resource tables via BATCHSTEP_RESOURCE_ID or RESOURCES.
Related Objects
The documented relationships around GME_PROCESS_PARAMETERS are:
- GME_BATCH_STEP_ACTIVITIES — Referenced by BATCHSTEP_ACTIVITY_ID; the parent step activity definition for each reading.
- GME_PROCESS_PARAMETERS_MIG — References PROCESS_PARAM_ID; a migration staging table mirroring this structure.
- GMP_RESOURCE_DEVICE_MESSAGES — References PROCESS_PARAM_ID; device message records linked to a parameter reading, supporting equipment integration.
Because the table is classified as standalone, these are the principal documented dependencies; broader reporting typically reaches batch and resource context indirectly through BATCH_ID, BATCHSTEP_ID, and BATCHSTEP_RESOURCE_ID rather than through further parent tables.
-
Table: GME_PROCESS_PARAMETERS
12.1.1
owner:GME, object_type:TABLE, fnd_design_data:GME.GME_PROCESS_PARAMETERS, object_name:GME_PROCESS_PARAMETERS, status:VALID, product: GME - Process Manufacturing Process Execution , description: GME Process Parameters, table to store actual values of Process Parameters attached to a resource , implementation_dba_data: GME.GME_PROCESS_PARAMETERS ,
-
Table: GME_PROCESS_PARAMETERS
12.2.2
owner:GME, object_type:TABLE, fnd_design_data:GME.GME_PROCESS_PARAMETERS, object_name:GME_PROCESS_PARAMETERS, status:VALID, product: GME - Process Manufacturing Process Execution , description: GME Process Parameters, table to store actual values of Process Parameters attached to a resource , implementation_dba_data: GME.GME_PROCESS_PARAMETERS ,
-
PACKAGE: APPS.GME_PROCESS_PARAMETERS_DBL
12.1.1
-
APPS.GME_PROCESS_PARAMETERS_DBL SQL Statements
12.2.2
-
PACKAGE: APPS.GME_PROCESS_PARAMETERS_DBL
12.2.2
-
APPS.GME_PROCESS_PARAMETERS_DBL SQL Statements
12.1.1
-
PACKAGE BODY: APPS.GME_PROCESS_PARAMETERS_DBL
12.1.1
-
APPS.GME_PROCESS_PARAMETERS_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.GME_PROCESS_PARAMETERS_DBL
12.2.2
-
APPS.GME_PROCESS_PARAMETERS_PVT SQL Statements
12.2.2
-
PACKAGE: APPS.GME_PROCESS_PARAMETERS_PVT
12.2.2
-
PACKAGE: APPS.GME_PROCESS_PARAMETERS_PVT
12.1.1
-
VIEW: APPS.GME_PROCESS_PARAMETERS_V
12.1.1
-
View: GME_PROCESS_PARAMETERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_PROCESS_PARAMETERS_V, object_name:GME_PROCESS_PARAMETERS_V, status:VALID, product: GME - Process Manufacturing Process Execution , description: Supplementary view based on table gme_process_parameters , implementation_dba_data: APPS.GME_PROCESS_PARAMETERS_V ,
-
View: GME_PROCESS_PARAMETERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_PROCESS_PARAMETERS_V, object_name:GME_PROCESS_PARAMETERS_V, status:VALID, product: GME - Process Manufacturing Process Execution , description: Supplementary view based on table gme_process_parameters , implementation_dba_data: APPS.GME_PROCESS_PARAMETERS_V ,
-
VIEW: APPS.GME_PROCESS_PARAMETERS_V
12.2.2
-
APPS.GMD_PROC_PARAMS_MIGR SQL Statements
12.1.1
-
SYNONYM: APPS.GME_PROCESS_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GME_PROCESS_PARAMETERS, status:VALID,
-
PACKAGE: APPS.GME_VALIDATE_FLEX_FLD_PVT
12.1.1
-
VIEW: GME.GME_PROCESS_PARAMETERS#
12.2.2
owner:GME, object_type:VIEW, object_name:GME_PROCESS_PARAMETERS#, status:VALID,
-
SYNONYM: APPS.GME_PROCESS_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GME_PROCESS_PARAMETERS, status:VALID,
-
PACKAGE: APPS.GME_VALIDATE_FLEX_FLD_PVT
12.2.2
-
APPS.GMD_PROC_PARAMS_MIGR SQL Statements
12.2.2
-
VIEW: GME.GME_PROCESS_PARAMETERS#
12.2.2
-
Lookup Type: GMO_NONCONFORMANCE_ENTITIES
12.2.2
product: GMO - Manufacturing Execution System for Process Manufacturing , meaning: Nonconformance Entities , description: Process Nonconformance entities that interfaces to Oracle Quality ,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: APPS.GME_PROCESS_PARAMETERS_DBL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:GME_PROCESS_PARAMETERS_DBL, status:VALID,
-
PACKAGE BODY: APPS.GME_PROCESS_PARAMETERS_DBL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GME_PROCESS_PARAMETERS_DBL, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE: APPS.GME_PROCESS_PARAMETERS_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:GME_PROCESS_PARAMETERS_PVT, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: APPS.GME_PROCESS_PARAMETERS_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:GME_PROCESS_PARAMETERS_PVT, status:VALID,
-
PACKAGE: APPS.GME_PROCESS_PARAMETERS_DBL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:GME_PROCESS_PARAMETERS_DBL, status:VALID,
-
VIEW: APPS.GME_PROCESS_PARAMETERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_PROCESS_PARAMETERS_V, object_name:GME_PROCESS_PARAMETERS_V, status:VALID,
-
VIEW: APPS.GME_PROCESS_PARAMETERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_PROCESS_PARAMETERS_V, object_name:GME_PROCESS_PARAMETERS_V, status:VALID,
-
PACKAGE: APPS.GME_POST_MIGRATION
12.1.1
owner:APPS, object_type:PACKAGE, object_name:GME_POST_MIGRATION, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.GME_PROCESS_PARAMETERS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GME_PROCESS_PARAMETERS_PVT, status:VALID,
-
PACKAGE BODY: APPS.GME_PROCESS_PARAMETERS_DBL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GME_PROCESS_PARAMETERS_DBL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.GMD_PROC_PARAMS_MIGR
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_PROC_PARAMS_MIGR, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: APPS.GME_POST_MIGRATION
12.2.2
owner:APPS, object_type:PACKAGE, object_name:GME_POST_MIGRATION, status:VALID,
-
APPS.GME_VALIDATE_FLEX_FLD_PVT SQL Statements
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.GMD_PROC_PARAMS_MIGR
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_PROC_PARAMS_MIGR, status:VALID,
-
PACKAGE BODY: APPS.GME_PROCESS_PARAMETERS_PVT
12.2.2
-
PACKAGE BODY: APPS.GME_PROCESS_PARAMETERS_PVT
12.1.1
-
12.1.1 DBA Data
12.1.1