Search Results get_formula_details




Overview

APPS.GMD_PROCESS_INSTR_UTILS is a technical utility package body within the Oracle EBS Process Manufacturing (OPM) product family, specifically the Enterprise Technical Reference Model (ETRM) area governing process instructions. In both 12.1.1 and 12.2.2, the package serves as a supporting engine for assembling, copying, and transmitting process instruction data associated with recipes, routings, operations, and formula material details. Rather than exposing a formal public API classification—it is catalogued as OTHER—the package provides internal PL/SQL building blocks consumed by other OPM components. The header ($Header: GMDPIUTB.pls 120.9) confirms it is a maintained core library file.

Key Procedures and Functions

The documented interface exposes ten procedures and functions. Their naming indicates two principal concerns: process-instruction manipulation and acknowledgement messaging.

No parameter lists are documented; usage must be confirmed against the installed source.

Tables Accessed

The package references eleven tables via APPS synonyms, all standard OPM and inventory objects:

The inline cursors confirm these reads: Get_recipe_details, Get_formula_details (the object matching the user's search term), Get_activity_details, Get_routing_details, and Get_resource_details.

Usage Notes

Get_formula_details is the cursor that resolves formula material lines for a given formula_id, joining FM_MATL_DTL to MTL_SYSTEM_ITEMS_KFV on inventory_item_id and organization_id, ordered by line_type and line_no. This cursor underpins the process instruction assembly performed by BUILD_ARRAY and the copy routines. Because the package is referenced by five other packages and lacks a formal API classification, it is invoked programmatically rather than through a dedicated concurrent program or form. Customizations should call it only where the OPM manufacturing flow expects process instruction assembly, and 12.1.1/12.2.2 compatibility should be verified against the installed 120.9 source line.