Search Results mrp_relief_interface
Overview
The MRP_RELIEF_INTERFACE table is a critical staging table within the Oracle E-Business Suite (EBS) Master Scheduling/MRP module. Its primary function is to serve as an interface for the relief process, which reduces the available quantity in master schedule entries based on actual consumption, such as discrete job completions or sales order shipments. This process ensures that the Master Production Schedule (MPS) and Material Requirements Planning (MRP) engine operates with accurate, net available supply, preventing double-counting of planned resources. The table acts as a holding area where transaction data is populated, typically via the MRP Relief concurrent program or related APIs, before being processed to update the master schedule tables.
Key Information Stored
The table stores transactional data necessary to identify and decrement specific master schedule quantities. While the full column list is extensive, key columns inferred from the metadata include TRANSACTION_ID (the primary key), INVENTORY_ITEM_ID, and ORGANIZATION_ID (foreign keys to MTL_SYSTEM_ITEMS_B), which together identify the relieved item. The DISPOSITION_ID is a foreign key to WIP_ENTITIES or MTL_DEMAND, linking the relief transaction to its source, such as a specific work order. The PLANNED_ORDER_ID is a foreign key to MRP_RECOMMENDATIONS, linking the relief to the specific planned order or schedule entry being consumed. Other typical columns would include quantities, relief dates, and processing status flags.
Common Use Cases and Queries
The primary use case is executing the MRP Relief process via the standard concurrent request. Administrators may query the interface to diagnose relief failures or monitor unprocessed transactions. Common SQL patterns include checking for pending records or tracing relief history. For example:
- Identifying unprocessed interface records:
SELECT transaction_id, inventory_item_id, disposition_id FROM mrp_relief_interface WHERE process_status IS NULL; - Validating relief against source transactions:
SELECT mri.transaction_id, we.wip_entity_name FROM mrp_relief_interface mri, wip_entities we WHERE mri.disposition_id = we.wip_entity_id;
Direct manipulation of data in this table is not standard practice; interaction should occur through the designated concurrent programs or APIs.
Related Objects
As per the provided metadata, MRP_RELIEF_INTERFACE has direct foreign key relationships with several core EBS tables. It references MTL_SYSTEM_ITEMS_B for item definitions, WIP_ENTITIES for discrete job information, MTL_DEMAND for demand sources, and MRP_RECOMMENDATIONS for the planned orders being relieved. The table is central to the relief workflow and is populated by the MRP Relief concurrent program (likely invoking packages within the MRP schema). Successful processing of its records ultimately updates master schedule quantities in underlying base tables like MRP_SCHEDULE_DATES.
-
Table: MRP_RELIEF_INTERFACE
12.2.2
owner:MRP, object_type:TABLE, fnd_design_data:MRP.MRP_RELIEF_INTERFACE, object_name:MRP_RELIEF_INTERFACE, status:VALID, product: MRP - Master Scheduling/MRP , description: Interface table to relieve the master schedule tables , implementation_dba_data: MRP.MRP_RELIEF_INTERFACE ,
-
Table: MRP_RELIEF_INTERFACE
12.1.1
owner:MRP, object_type:TABLE, fnd_design_data:MRP.MRP_RELIEF_INTERFACE, object_name:MRP_RELIEF_INTERFACE, status:VALID, product: MRP - Master Scheduling/MRP , description: Interface table to relieve the master schedule tables , implementation_dba_data: MRP.MRP_RELIEF_INTERFACE ,
-
Table: MRP_RECOMMENDATIONS
12.2.2
owner:MRP, object_type:TABLE, fnd_design_data:MRP.MRP_RECOMMENDATIONS, object_name:MRP_RECOMMENDATIONS, status:VALID, product: MRP - Master Scheduling/MRP , description: MRP plan recommendations , implementation_dba_data: MRP.MRP_RECOMMENDATIONS ,
-
Table: MRP_RECOMMENDATIONS
12.1.1
owner:MRP, object_type:TABLE, fnd_design_data:MRP.MRP_RECOMMENDATIONS, object_name:MRP_RECOMMENDATIONS, status:VALID, product: MRP - Master Scheduling/MRP , description: MRP plan recommendations , implementation_dba_data: MRP.MRP_RECOMMENDATIONS ,