Search Results fm_ares_mst




Overview

The FM_ARES_MST table is a core data object within the Oracle E-Business Suite Process Manufacturing (GMD) module, specifically for the Product Development sub-module. It serves as a master repository for defining operation-specific alternate resource factors. In the context of manufacturing process formulas and routings, this table enables the configuration of alternative resources that can be substituted for a primary resource during production, along with any associated efficiency or capacity factors. This functionality is critical for production planning and scheduling, allowing for flexibility in resource allocation while maintaining accurate costing and throughput calculations.

Key Information Stored

The table's structure is defined by its primary key, which uniquely identifies each alternate resource rule. The key columns are OPRN_ID, PRIMARY_RESOURCE, and ALTERNATE_RESOURCE. The OPRN_ID links the rule to a specific operation within a process routing. The PRIMARY_RESOURCE and ALTERNATE_RESOURCE columns store the identifiers for the designated primary and substitutable resources, respectively. While the provided metadata does not list all columns, such a table typically includes additional attributes like a factor or efficiency percentage (e.g., an alternate machine may run at 90% of the primary's speed), effective dates, and a TEXT_CODE for descriptive notes. The TEXT_CODE column is explicitly referenced as a foreign key to the FM_TEXT_HDR table, allowing for detailed textual documentation of the alternate resource rule.

Common Use Cases and Queries

A primary use case is during production scheduling and capacity planning, where the system can query this table to find viable substitutes if the primary resource is unavailable or over-utilized. For example, a process engineer might run a query to review all configured alternates for a critical operation. A common reporting query would join FM_ARES_MST with resource and operation master tables.

  • Sample Query: To list all alternate resources for a given operation, one might use: SELECT a.primary_resource, a.alternate_resource, r.resource_code FROM gmd.fm_ares_mst a, gmd.cr_rsrc_mst r WHERE a.alternate_resource = r.resource_id AND a.oprn_id = :p_oprn_id;
  • Integration: This data is integral to the Process Manufacturing engine's algorithms for generating feasible production schedules and calculating accurate resource requirements and costs within formula and batch management.

Related Objects

The FM_ARES_MST table has defined relationships with several other key GMD tables, as indicated by its foreign key constraints. It is heavily dependent on the resource master tables, CR_RSRC_MST and CR_RSRC_MST_B, for both its PRIMARY_RESOURCE and ALTERNATE_RESOURCE columns. This ensures that only valid, defined resources can be used in the alternate resource rules. The relationship with FM_TEXT_HDR via the TEXT_CODE column provides a link to descriptive text blocks. As a master table for operational rules, it is likely referenced by various Process Manufacturing application forms, batch scheduling engines, and potentially by views that aggregate routing and resource data for reporting purposes.