Search Results planner_code_hidden
Overview
APPS.MSC_ACTION_SUMMARY_V is a supplementary database view in the Oracle E-Business Suite Advanced Supply Chain Planning (ASCP) module, owned by the APPS schema. Its FND Design Data identifier is MSC.MSC_ACTION_SUMMARY_V, and its status is VALID in both 12.1.1 and 12.2.2. Oracle classifies this object as a supplementary view whose purpose is to simplify forms coding — specifically, it aggregates planning exception and action messages so that the Planner Workbench and related Action Summary forms can present consolidated exception information without directly joining the underlying planning tables. Oracle explicitly cautions that this view is not intended for direct customer query or update, and that its definition may change dramatically in subsequent minor or major releases. Consequently, any custom report or integration that consumes this view must be treated as version-sensitive and should be re-validated after patching or upgrades.
Underlying Base Objects
The documented reference metadata identifies three base dependencies: the synonym MSC_FORM_QUERY, the package MSC_GET_NAME, and the synonym MSC_PLANS. MSC_FORM_QUERY is the form-level query construct that supplies filtered exception rows for the Action Summary user interface, while MSC_PLANS anchors the plan context (PLAN_ID, COMPILE_DESIGNATOR) that scopes the rows returned. The MSC_GET_NAME package is invoked to resolve descriptive display values — for example, translating codes such as PLANNER_CODE, CATEGORY_ID, DEPARTMENT_ID, and RESOURCE_ID into human-readable names (PLANNER_CODE_HIDDEN, CATEGORY_NAME, PLANNING_GROUP, RESOURCE_CODE, and so on) used in the summary grids. The view therefore sits as a forms-supporting projection layer over the MSC planning exception tables, joining key, description, and hidden-sort columns into a single flattened structure.
Key Columns
- Exception identity: EXCEPTION_TYPE, EXCEPTION_GROUP, EXCEPTION_GROUP_TEXT, EXCEPTION_LEVEL, EXCEPTION_TYPE_TEXT — define the exception category and its display label.
- Plan context: PLAN_ID, COMPILE_DESIGNATOR, ORGANIZATION_ID, ORGANIZATION_CODE, SR_INSTANCE_ID — scope the exception to a plan, organization, and source instance.
- Item and project dimension: INVENTORY_ITEM_ID, ITEM_SEGMENTS, PRODUCT_FAMILY_ID, PRODUCT_FAMILY_NAME, PROJECT_ID, TASK_ID, PROJECT_NUMBER, TASK_NUMBER, VERSION.
- Resource and department dimension: DEPARTMENT_ID, DEPARTMENT_CLASS, DEPARTMENT_LINE_CODE, RESOURCE_ID, RESOURCE_CODE, RESOURCE_GROUP, RESOURCE_TYPE_CODE.
- Buyer and supplier dimension: BUYER_NAME, BUYER_NAME_HIDDEN, SUPPLIER_ID, SUPPLIER_NAME.
- Planner and category dimension: PLANNER_CODE, PLANNER_CODE_HIDDEN, CATEGORY_ID, CATEGORY_NAME, PLANNING_GROUP, PLANNING_GROUP_HIDDEN.
- Counts and control columns: EXCEPTION_COUNT, NEW_EXCEPTION_COUNT, QUERY_ID, DISPLAY, HIDDEN_SORT_GROUP, HIDDEN_SORT_EXCEPT, ROW_ID (ROWID), plus the standard WHO audit columns.
In the context of the search term "department_line_code," the DEPARTMENT_LINE_CODE column (VARCHAR2(4000)) identifies the specific production line within a department against which a resource-related exception is raised, enabling line-level granularity in the Action Summary display.
Common Use Cases and Queries
The primary uses are Planner Workbench exception drill-down, Action Summary reporting, and diagnostic analysis of resource and department bottlenecks. A representative query groups exceptions by department line:
SELECT plan_id, organization_code, department_class, department_line_code, resource_code, exception_type_text, SUM(exception_count) FROM apps.msc_action_summary_v GROUP BY plan_id, organization_code, department_class, department_line_code, resource_code, exception_type_text;- Filter by a specific plan and organization to list open exceptions:
SELECT * FROM apps.msc_action_summary_v WHERE plan_id = :plan_id AND organization_id = :org_id; - Join on DEPARTMENT_LINE_CODE to a resource/department view for line-capacity attribution in custom planning dashboards.
Because this is a forms-supporting view and Oracle discourages direct querying, custom usage should be limited to read-only reporting, wrapped behind a controlled interface, and validated against each target release (12.1.1 versus 12.2.2) before deployment.
-
VIEW: APPS.MSC_ACTION_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ACTION_SUMMARY_V, object_name:MSC_ACTION_SUMMARY_V, status:VALID,
-
VIEW: APPS.MSC_ACTION_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ACTION_SUMMARY_V, object_name:MSC_ACTION_SUMMARY_V, status:VALID,
-
VIEW: APPS.MRP_EXCEPTION_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_EXCEPTION_SUMMARY_V, object_name:MRP_EXCEPTION_SUMMARY_V, status:VALID,
-
VIEW: APPS.MRP_EXCEPTION_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_EXCEPTION_SUMMARY_V, object_name:MRP_EXCEPTION_SUMMARY_V, status:VALID,
-
View: MRP_EXCEPTION_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_EXCEPTION_SUMMARY_V, object_name:MRP_EXCEPTION_SUMMARY_V, status:VALID, product: MRP - Master Scheduling/MRP , description: Enhanced exception message , implementation_dba_data: APPS.MRP_EXCEPTION_SUMMARY_V ,
-
View: MRP_EXCEPTION_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_EXCEPTION_SUMMARY_V, object_name:MRP_EXCEPTION_SUMMARY_V, status:VALID, product: MRP - Master Scheduling/MRP , description: Enhanced exception message , implementation_dba_data: APPS.MRP_EXCEPTION_SUMMARY_V ,
-
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: MSC_ACTION_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ACTION_SUMMARY_V, object_name:MSC_ACTION_SUMMARY_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This view show the exception group counts in the tree , implementation_dba_data: APPS.MSC_ACTION_SUMMARY_V ,
-
View: MSC_ACTION_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ACTION_SUMMARY_V, object_name:MSC_ACTION_SUMMARY_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This view show the exception group counts in the tree , implementation_dba_data: APPS.MSC_ACTION_SUMMARY_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_RP_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_ORDERS_RP_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: 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_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_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,
-
VIEW: APPS.MSC_PEGGING_SUPPLY_V2
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_PEGGING_SUPPLY_V2, status:VALID,
-
VIEW: APPS.MSC_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ORDERS_V, object_name:MSC_ORDERS_V, status:VALID,
-
View: 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, product: MRP - Master Scheduling/MRP , description: Modified SCP supply and demand view for Performance Tuning , implementation_dba_data: APPS.MRP_ORDERS_SC_V ,
-
View: OLD_ORDERS_SC_V
12.1.1
product: MRP - Master Scheduling/MRP , description: Modified SCP supply and demand view for Performance Tuning , implementation_dba_data: Not implemented in this database ,
-
View: OLD_ORDERS_SC_V
12.2.2
product: MRP - Master Scheduling/MRP , description: Modified SCP supply and demand view for Performance Tuning , implementation_dba_data: Not implemented in this database ,
-
View: 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, product: MRP - Master Scheduling/MRP , description: Modified SCP supply and demand view for Performance Tuning , implementation_dba_data: APPS.MRP_ORDERS_SC_V ,
-
VIEW: APPS.MSC_PEGGING_SUPPLY_V
12.2.2
-
VIEW: APPS.MSC_PEGGING_SUPPLY_V3
12.2.2
-
View: MSC_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ORDERS_V, object_name:MSC_ORDERS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This view shjows all the supplies,demands anf sales orders , implementation_dba_data: APPS.MSC_ORDERS_V ,
-
View: 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, product: MSC - Advanced Supply Chain Planning , description: This view shjows all the supplies,demands anf sales orders , implementation_dba_data: APPS.MSC_ORDERS_V ,
-
eTRM - MRP Tables and Views
12.2.2
description: Recommendations based on user criteria selected in MRP Planner WorkBench ,
-
eTRM - MRP Tables and Views
12.1.1
description: Recommendations based on user criteria selected in MRP Planner WorkBench ,
-
eTRM - MSC Tables and Views
12.1.1
description: This table contains the mapping between user-defined zone and included regions ,
-
eTRM - MSC Tables and Views
12.2.2
description: This table contains the mapping between user-defined zone and included regions ,