Search Results order_type_text
Overview
APPS.MSC_EXC_DETAIL_RESOURCE_V is a reporting view in the Oracle EBS Advanced Supply Chain Planning (ASCP) schema, owned by APPS and defined under the FND Design Data object MSC.MSC_EXC_DETAIL_RESOURCE_V. It presents the resource-level detail records behind planning exceptions generated by the MSC engine — the same exception messages surfaced in the Planner Workbench, Exception Messages window, and related ASCP reports. Where MSC_EXCEPTION_DETAILS stores header-level exception rows, this view joins and flattens the resource, organization, item, and demand/supply attributes so that each row represents a single exception detail line attributed to a specific resource or department resource. It is read-only reference data maintained by the planning engine and is typically consumed for diagnostics, ad hoc reporting, and integration with downstream planning or exception-notification processes. The view status is VALID in both 12.1.1 and 12.2.2, and it is not referenced by any other database object, confirming its role as a leaf-level query object rather than a dependency of other schema components.
Underlying Base Objects
The view is defined over a combination of MSC planning tables and shared lookup objects, exposed through APPS synonyms:
- MSC_EXCEPTION_DETAILS — the primary source of exception rows, keyed by EXCEPTION_DETAIL_ID, EXCEPTION_TYPE, and PLAN_ID.
- MSC_DEPARTMENT_RESOURCES — supplies DEPARTMENT_ID, RESOURCE_ID, LOAD_RATIO, and resource grouping context.
- MSC_DEMANDS and MSC_SUPPLIES — provide the demand/supply detail behind each exception, including ORDER_NUMBER, DUE_DATE, and QUANTITY.
- MSC_ITEMS and MSC_SYSTEM_ITEMS — resolve ITEM_NAME and item attributes.
- MSC_TRADING_PARTNERS and MSC_INTERORG_SHIP_METHODS — supply partner and shipping context.
- MFG_LOOKUPS — resolves the ORDER_TYPE lookup into the human-readable ORDER_TYPE_TEXT column.
- MSC_GET_NAME — a package function used to derive descriptive names.
These objects are joined within the view so that consumers do not need to reconstruct the exception-to-resource-to-item relationship manually.
Key Columns
- EXCEPTION_TYPE, EXCEPTION_DETAIL_ID, PLAN_ID — identify the exception and its parent plan.
- ORGANIZATION_ID / ORGANIZATION_CODE — the planning organization in scope.
- DEPARTMENT_ID, DEPARTMENT_CODE, DEPARTMENT_CLASS, RESOURCE_ID, RESOURCE_CODE, RESOURCE_GROUP, LOAD_RATIO — the resource and department-resource context, including load ratio and grouping.
- FROM_DATE, TO_DATE, BATCH_NUMBER — the planning bucket window for the exception.
- REQUIRED_CAPACITY — the capacity demanded against the resource.
- ORDER_NUMBER, DUE_DATE, QUANTITY, LINE_NUMBER — the originating order or demand line detail.
- ORDER_TYPE, ORDER_TYPE_TEXT — the order type code and its decoded display text, sourced from MFG_LOOKUPS.
- ITEM_NAME, BUYER_NAME, PLANNER_CODE — descriptive attributes for reporting.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — standard audit columns.
Common Use Cases and Queries
The view is commonly queried to list exceptions by plan, organization, resource, or order type, and to reconcile required capacity against demand. The following sample retrieves resource-level exceptions for a plan, filtered by order type text:
SELECT plan_id, organization_code, resource_code, department_code, order_number, order_type_text, item_name, required_capacity, quantity, due_date FROM apps.msc_exc_detail_resource_v WHERE plan_id = :p_plan_id AND order_type_text = :p_order_type_text ORDER BY due_date;- Aggregate required capacity by resource:
SELECT resource_code, SUM(required_capacity) FROM apps.msc_exc_detail_resource_v WHERE plan_id = :p_plan_id GROUP BY resource_code; - Exception exception roster:
SELECT exception_type, exception_detail_id, order_number, buyer_name, planner_code FROM apps.msc_exc_detail_resource_v WHERE organization_id = :p_org_id;
Because the view joins multiple planning tables, queries should always be constrained by PLAN_ID or ORGANIZATION_ID to limit result sets on large ASCP instances.
-
VIEW: APPS.MSC_EXC_DETAIL_RESOURCE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_EXC_DETAIL_RESOURCE_V, object_name:MSC_EXC_DETAIL_RESOURCE_V, status:VALID,
-
VIEW: APPS.MSC_EXC_DETAIL_ITEM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_EXC_DETAIL_ITEM_V, object_name:MSC_EXC_DETAIL_ITEM_V, status:VALID,
-
VIEW: APPS.MSC_EXC_DETAIL_ITEM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_EXC_DETAIL_ITEM_V, object_name:MSC_EXC_DETAIL_ITEM_V, status:VALID,
-
VIEW: APPS.MSC_SHIPMENT_LINES_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MSC_SHIPMENT_LINES_V, status:VALID,
-
VIEW: APPS.MSC_CRITICAL_PATHS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_CRITICAL_PATHS_V, object_name:MSC_CRITICAL_PATHS_V, status:VALID,
-
VIEW: APPS.MRP_KANBAN_DEMAND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_KANBAN_DEMAND_V, object_name:MRP_KANBAN_DEMAND_V, status:VALID,
-
VIEW: APPS.MSC_VERTICAL_PLAN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_VERTICAL_PLAN_V, object_name:MSC_VERTICAL_PLAN_V, status:VALID,
-
VIEW: APPS.MSC_EXC_DETAIL_RESOURCE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_EXC_DETAIL_RESOURCE_V, object_name:MSC_EXC_DETAIL_RESOURCE_V, status:VALID,
-
VIEW: APPS.MSC_VERTICAL_PLAN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_VERTICAL_PLAN_V, object_name:MSC_VERTICAL_PLAN_V, status:VALID,
-
VIEW: APPS.MSC_SHIPMENT_LINES_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_SHIPMENT_LINES_V, status:VALID,
-
VIEW: APPS.MSC_NET_EXC_DETAIL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_NET_EXC_DETAIL_V, object_name:MSC_NET_EXC_DETAIL_V, status:VALID,
-
TABLE: MSC.MSC_GANTT_DTL_QUERY
12.2.2
owner:MSC, object_type:TABLE, object_name:MSC_GANTT_DTL_QUERY, status:VALID,
-
VIEW: APPS.MRP_WEB_PLANNED_SUPPLY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_WEB_PLANNED_SUPPLY_V, object_name:MRP_WEB_PLANNED_SUPPLY_V, status:VALID,
-
VIEW: APPS.MRP_WEB_PLANNED_SUPPLY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_WEB_PLANNED_SUPPLY_V, object_name:MRP_WEB_PLANNED_SUPPLY_V, status:VALID,
-
Lookup Type: MSC_PQ_ORDERS
12.1.1
product: MSC - Advanced Supply Chain Planning , meaning: For Orders Used in ASCP, IO and DRP , description: Field Prompts used for Personal Queries ,
-
VIEW: APPS.MSC_CRITICAL_PATHS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_CRITICAL_PATHS_V, object_name:MSC_CRITICAL_PATHS_V, status:VALID,
-
Lookup Type: MSC_PQ_ORDERS
12.2.2
product: MSC - Advanced Supply Chain Planning , meaning: For Orders Used in ASCP, IO and DRP , description: Field Prompts used for Personal Queries ,
-
VIEW: APPS.MRP_KANBAN_DEMAND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_KANBAN_DEMAND_V, object_name:MRP_KANBAN_DEMAND_V, status:VALID,
-
VIEW: APPS.MSC_NET_EXC_DETAIL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_NET_EXC_DETAIL_V, object_name:MSC_NET_EXC_DETAIL_V, status:VALID,
-
TABLE: MSC.MSC_GANTT_DTL_QUERY
12.1.1
owner:MSC, object_type:TABLE, object_name:MSC_GANTT_DTL_QUERY, status:VALID,
-
View: MRP_KANBAN_DEMAND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_KANBAN_DEMAND_V, object_name:MRP_KANBAN_DEMAND_V, status:VALID, product: MRP - Master Scheduling/MRP , description: Kanban demand view , implementation_dba_data: APPS.MRP_KANBAN_DEMAND_V ,
-
Lookup Type: MSC_WRKSH_RSLT_ORDER
12.2.2
product: MSC - Advanced Supply Chain Planning , meaning: Worksheet Result Order , description: Field Prompts for Worksheet ,
-
View: MRP_KANBAN_DEMAND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_KANBAN_DEMAND_V, object_name:MRP_KANBAN_DEMAND_V, status:VALID, product: MRP - Master Scheduling/MRP , description: Kanban demand view , implementation_dba_data: APPS.MRP_KANBAN_DEMAND_V ,
-
VIEW: APPS.MRP_ORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_ORDERS_V, object_name:MRP_ORDERS_V, status:VALID,
-
Lookup Type: MSC_WRKSH_RSLT_DEMAND
12.2.2
product: MSC - Advanced Supply Chain Planning , meaning: Worksheet Result Demand , description: Field Prompts for Worksheet ,
-
VIEW: APPS.MRP_ORDERS_SC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_ORDERS_SC_V, object_name:MRP_ORDERS_SC_V, status:VALID,
-
VIEW: APPS.MRP_ORDERS_SC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_ORDERS_SC_V, object_name:MRP_ORDERS_SC_V, status:VALID,
-
View: MRP_WEB_PLANNED_SUPPLY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_WEB_PLANNED_SUPPLY_V, object_name:MRP_WEB_PLANNED_SUPPLY_V, status:VALID, product: MRP - Master Scheduling/MRP , description: Supply information for items , implementation_dba_data: APPS.MRP_WEB_PLANNED_SUPPLY_V ,
-
View: MRP_WEB_PLANNED_SUPPLY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_WEB_PLANNED_SUPPLY_V, object_name:MRP_WEB_PLANNED_SUPPLY_V, status:VALID, product: MRP - Master Scheduling/MRP , description: Supply information for items , implementation_dba_data: APPS.MRP_WEB_PLANNED_SUPPLY_V ,
-
VIEW: APPS.MRP_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_ORDERS_V, object_name:MRP_ORDERS_V, status:VALID,
-
View: MSC_VERTICAL_PLAN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_VERTICAL_PLAN_V, object_name:MSC_VERTICAL_PLAN_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: this view shows the vertical plan , implementation_dba_data: APPS.MSC_VERTICAL_PLAN_V ,
-
View: MSC_CRITICAL_PATHS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_CRITICAL_PATHS_V, object_name:MSC_CRITICAL_PATHS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_CRITICAL_PATHS_V ,
-
View: MSC_VERTICAL_PLAN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_VERTICAL_PLAN_V, object_name:MSC_VERTICAL_PLAN_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: this view shows the vertical plan , implementation_dba_data: APPS.MSC_VERTICAL_PLAN_V ,
-
View: MSC_NET_EXC_DETAIL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_NET_EXC_DETAIL_V, object_name:MSC_NET_EXC_DETAIL_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_NET_EXC_DETAIL_V ,
-
View: MSC_CRITICAL_PATHS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_CRITICAL_PATHS_V, object_name:MSC_CRITICAL_PATHS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_CRITICAL_PATHS_V ,
-
View: MSC_EXC_DETAIL_RESOURCE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_EXC_DETAIL_RESOURCE_V, object_name:MSC_EXC_DETAIL_RESOURCE_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_EXC_DETAIL_RESOURCE_V ,
-
View: MSC_NET_EXC_DETAIL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_NET_EXC_DETAIL_V, object_name:MSC_NET_EXC_DETAIL_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_NET_EXC_DETAIL_V ,
-
VIEW: APPS.MSC_PEGGING_DEMAND_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_PEGGING_DEMAND_V, status:VALID,
-
VIEW: APPS.MSC_ORDERS_DRP_COL_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MSC_ORDERS_DRP_COL_V, status:VALID,
-
View: MSC_EXC_DETAIL_RESOURCE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_EXC_DETAIL_RESOURCE_V, object_name:MSC_EXC_DETAIL_RESOURCE_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_EXC_DETAIL_RESOURCE_V ,
-
VIEW: APPS.MSC_ORDERS_RP_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_ORDERS_RP_V, status:VALID,
-
VIEW: APPS.MSC_ORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ORDERS_V, object_name:MSC_ORDERS_V, status:VALID,
-
VIEW: APPS.MSC_ORDERS_DRP_COL_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_ORDERS_DRP_COL_V, status:VALID,
-
VIEW: APPS.MSC_PEGGING_SUPPLY_V3
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_PEGGING_SUPPLY_V3, status:VALID,
-
VIEW: APPS.MSC_ORDERS_COL_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MSC_ORDERS_COL_V, status:VALID,
-
VIEW: APPS.MSC_ORDERS_DRP_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MSC_ORDERS_DRP_V, status:VALID,
-
VIEW: APPS.MSC_ORDERS_COL_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_ORDERS_COL_V, status:VALID,
-
VIEW: APPS.MSC_PEGGING_SUPPLY_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_PEGGING_SUPPLY_V, status:VALID,
-
VIEW: APPS.MSC_ORDERS_DRP_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_ORDERS_DRP_V, status:VALID,
-
VIEW: APPS.MSC_PEGGING_DEMAND_V2
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_PEGGING_DEMAND_V2, status:VALID,