Results for “daily_relief_qty”
24 results
AI-generated from documented ETRM metadata — verify critical details on the linked pages.
Overview
MSC_ATP_PEGGING is a table in the MSC schema of Oracle E-Business Suite, belonging to the Advanced Supply Chain Planning (ASCP) product. It stores available-to-promise (ATP) pegging records produced during a planning run, capturing the allocation of supply to demand at the level of individual sales order lines, resources, and departments. Whereas MRP_FULL_PEGGING maintains the general pegging tree linking supplies to demands, MSC_ATP_PEGGING focuses specifically on the ATP context, where the question is not merely which supply satisfies which demand, but how much of a given supply quantity can be promised, when, and against which resource or department capacity.
From a heuristic Data Vault modeling perspective, the metadata classifies this object as standalone. This suggests it is best treated as a satellite-like structure: it carries descriptive and quantitative attributes (quantities, dates, relief types) tied to a business key rather than acting as a pure hub or link. Because foreign key relationships exist to BOM_DEPARTMENTS and MRP_FULL_PEGGING, the table can also be modeled with link references to those parent entities where integration is required.
Key Information Stored
The table contains 42 documented columns in the 12.2.2 release. The most significant columns include:
- PLAN_ID — Identifies the ASCP plan under which the pegging record was generated; the primary business-key candidate for scoping records to a planning run.
- SR_INSTANCE_ID — Source instance identifier, used in multi-organization or multi-instance environments.
- INVENTORY_ITEM_ID / ORGANIZATION_ID — The item and organization context for the pegged supply or demand.
- REFERENCE_ITEM_ID / ORIGINAL_ITEM_ID — Related item references used when substitutions or original demand items must be preserved.
- SALES_ORDER_LINE_ID — Links the ATP record to the originating sales order line where the promise was made.
- SALES_ORDER_QTY / DEMAND_QUANTITY / SUPPLY_QUANTITY — The quantities involved on the demand and supply sides.
- CONSUMED_QTY / OVERCONSUMPTION_QTY / ALLOCATED_QUANTITY — Measures of consumption and allocation against available supply.
- RESOURCE_ID / DEPARTMENT_ID / RESOURCE_HOURS / DAILY_RESOURCE_HOURS — Resource and department capacity consumed; DEPARTMENT_ID references BOM_DEPARTMENTS.
- START_DATE / END_DATE / TRANSACTION_DATE — Date bounds for the pegging or relief window.
- PEGGING_ID / PREV_PEGGING_ID / END_PEGGING_ID — Keys that position the record within the pegging chain; PEGGING_ID references MRP_FULL_PEGGING.
- RELIEF_TYPE / RELIEF_QUANTITY / DAILY_RELIEF_QTY — Describes how supply is relieved over time.
- CREATED_BY / CREATION_DATE / LAST_UPDATED_BY / LAST_UPDATE_DATE — Standard audit columns maintained by concurrent programs and forms.
Common Use Cases and Queries
Typical uses include ATP consumption reporting, supply/demand traceability, and resource-load analysis. A representative query to retrieve ATP pegging for a plan and item follows:
SELECT pegging_id, sales_order_line_id, demand_quantity, supply_quantity, allocated_quantity, start_date, end_date FROM msc.msc_atp_pegging WHERE plan_id = :plan_id AND inventory_item_id = :item_id- Aggregating consumed quantity by department to analyze resource consumption:
SELECT department_id, SUM(daily_resource_hours) FROM msc.msc_atp_pegging WHERE plan_id = :plan_id GROUP BY department_id - Tracing a sales order line's promise back to its supply through PEGGING_ID and MRP_FULL_PEGGING joins.
These queries support planners investigating overconsumption, verifying whether promises remain valid, and auditing how ATP was allocated across departments and resources.
Related Objects
The most significant related objects, based on documented foreign keys, include:
- MRP_FULL_PEGGING — joined via MSC_ATP_PEGGING.PEGGING_ID = MRP_FULL_PEGGING.PEGGING_ID; provides the broader pegging tree.
- BOM_DEPARTMENTS — joined via MSC_ATP_PEGGING.DEPARTMENT_ID = BOM_DEPARTMENTS.DEPARTMENT_ID; supplies department details.
- MSC_PLANS — the parent plan referenced by PLAN_ID.
- MSC_SYSTEM_ITEMS / MTL_SYSTEM_ITEMS_B — item master context for INVENTORY_ITEM_ID and ORGANIZATION_ID.
- OE_ORDER_LINES_ALL — sales order line detail for SALES_ORDER_LINE_ID.
- BOM_RESOURCES — resource definitions for RESOURCE_ID.
-
VIEW: MSC.MSC_ATP_PEGGING# 12.2.2
-
VIEW: MSC.MSC_ATP_PEGGING# 12.2.2
-
TABLE: MSC.MSC_ATP_PEGGING 12.2.2
-
TABLE: MSC.MSC_ATP_PEG_TEMP 12.1.1
-
TABLE: MSC.MSC_ATP_PEGGING 12.1.1
-
TABLE: MSC.MSC_ATP_PEG_TEMP 12.2.2
-
eTRM - MSC Tables and Views 12.2.2
This table contains the mapping between user-defined zone and included regions
-
eTRM - MSC Tables and Views 12.1.1
This table contains the mapping between user-defined zone and included regions