Search Results gmp_resource_parameters




Overview

The GMP_RESOURCE_PARAMETERS table is a core data structure within the Oracle E-Business Suite Process Manufacturing (GMP) module, specifically for Process Planning. Its primary function is to establish and manage associations between generic resources and process parameters. In the context of manufacturing process definitions, this table acts as a junction, linking the master list of available resources (like equipment or labor) with the specific parameters (such as temperature, pressure, or speed) that are relevant for controlling or monitoring those resources during production. This association is fundamental for defining detailed process instructions and ensuring that operational constraints and targets are properly assigned to the appropriate manufacturing assets.

Key Information Stored

The table's structure is designed to enforce and record the many-to-many relationships between resources and parameters. The critical columns, as defined by its primary and foreign keys, are:

  • RESOURCES: This column stores the identifier for a generic resource from the master table (CR_RSRC_MST_B). It represents a specific piece of equipment, labor class, or other asset used in the process.
  • PARAMETER_ID: This column stores the identifier for a defined process parameter from the GMP_PROCESS_PARAMETERS_B table. It represents a measurable or controllable aspect of the manufacturing process.

The combination of these two columns forms the table's primary key (GMP_RESOURCE_PARAM_PK), ensuring that each resource-parameter association is unique within the system.

Common Use Cases and Queries

This table is central to process design and operational reporting. A common use case is during process recipe development, where planners define which parameters must be tracked for each resource involved in a routing step. For reporting, it enables queries to list all control parameters for a specific resource or to find all resources capable of handling a particular parameter. A typical SQL query would join this table to its referenced master tables to produce a meaningful report:

SELECT r.RESOURCE_CODE, p.PARAMETER_NAME
FROM GMP_RESOURCE_PARAMETERS rp,
CR_RSRC_MST_B r,
GMP_PROCESS_PARAMETERS_B p
WHERE rp.RESOURCES = r.RESOURCES_ID
AND rp.PARAMETER_ID = p.PARAMETER_ID
ORDER BY r.RESOURCE_CODE;

This data is also critical for integration with manufacturing execution systems (MES) or shop floor systems, providing the necessary mapping for data collection and control.

Related Objects

The GMP_RESOURCE_PARAMETERS table has defined dependencies on two key master tables, as per the provided foreign key constraints:

  • CR_RSRC_MST_B: The generic resources master table. The RESOURCES column in GMP_RESOURCE_PARAMETERS references this table to ensure validity of the resource identifier.
  • GMP_PROCESS_PARAMETERS_B: The base table for process parameters definition. The PARAMETER_ID column references this table to ensure the associated parameter is defined in the system.

This table is likely referenced by various Process Planning forms, reports, and APIs within the GMP module that manage resource-parameter associations, process routings, and production specifications.