Search Results msc_system_items
Overview
The MSC_SYSTEM_ITEMS table is a core data repository within the Oracle E-Business Suite Advanced Supply Chain Planning (ASCP) module, specifically for releases 12.1.1 and 12.2.2. It serves as the central planning engine's master item table, functioning as a snapshot and working copy of item data. Its primary role is to store item definitions sourced from transactional applications like Oracle Inventory and to maintain the specific item attributes and planning data used during a planning run. This separation from live transactional tables ensures the planning engine operates on a stable, versioned dataset, enabling consistent what-if analysis and scenario planning without impacting operational systems.
Key Information Stored
The table's structure mirrors the Oracle Inventory item master, extended with planning-specific attributes. Its primary key uniquely identifies a planned item through a composite of SR_INSTANCE_ID (source system instance), PLAN_ID, INVENTORY_ITEM_ID, and ORGANIZATION_ID. Key columns encompass a wide range of item data, including item codes, descriptions, planning methods (MPS, MRP, DRP), make/buy flags, lead times, shrinkage rates, and ABC classification codes. The table also holds critical planning parameters such as fixed order quantities, safety stock levels, and planning exception set identifiers, which directly influence the output of the planning engine.
Common Use Cases and Queries
A primary use case is analyzing the item master data upon which a specific plan was calculated. This is essential for troubleshooting plan output, validating that the correct planning parameters were loaded, and performing item-centric analytics. Common queries involve joining to planning output tables to assess coverage or diagnose exceptions. For example, to list all planned items with their associated demands within a specific plan, a query would join MSC_SYSTEM_ITEMS to MSC_DEMANDS. Another frequent pattern is querying for items with specific planning attributes, such as identifying all MPS-planned items or items with a particular sourcing rule.
- Identifying items planned in a specific scenario:
SELECT msi.item_name, msi.planning_make_buy_code FROM msc_system_items msi WHERE msi.plan_id = :p_plan_id; - Joining to demand for coverage analysis:
SELECT msi.item_name, SUM(md.using_requirement_quantity) FROM msc_system_items msi, msc_demands md WHERE msi.plan_id = md.plan_id AND msi.inventory_item_id = md.inventory_item_id GROUP BY msi.item_name;
Related Objects
MSC_SYSTEM_ITEMS maintains extensive foreign key relationships with core ASCP tables, underscoring its central role. As per the provided metadata, it is referenced by numerous planning transaction and definition tables. Key documented relationships include:
- MSC_PLAN_ORGANIZATIONS: Validates that items belong to organizations included in the plan (joined on PLAN_ID, ORGANIZATION_ID, SR_INSTANCE_ID).
- MSC_AVAILABLE_TO_PROMISE, MSC_DEMANDS: Links item master data to demand and ATP transactions (joined on INVENTORY_ITEM_ID, PLAN_ID, etc.).
- MSC_BOMS and MSC_BOM_COMPONENTS: Relates items to their bill of material structures, both as assemblies and components.
- MSC_EXCEPTION_DETAILS and MSC_FORECAST_UPDATES: Associates planning exceptions and forecast consumption records with the specific item instance.
- MSC_ABC_CLASSES: References the ABC_CLASS column for classification data.
-
Table: MSC_SYSTEM_ITEMS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_SYSTEM_ITEMS, object_name:MSC_SYSTEM_ITEMS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: MSC_SYSTEM_ITEMS stores the organization items defined at source applications. It also stores a copy of items planned by the planning process. Most of the columns in MSC_SYSTEM_ITEMS correspond to columns from the Oracle Inventory Item mast , implementation_dba_data: MSC.MSC_SYSTEM_ITEMS ,
-
Table: MSC_SYSTEM_ITEMS
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_SYSTEM_ITEMS, object_name:MSC_SYSTEM_ITEMS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: MSC_SYSTEM_ITEMS stores the organization items defined at source applications. It also stores a copy of items planned by the planning process. Most of the columns in MSC_SYSTEM_ITEMS correspond to columns from the Oracle Inventory Item mast , implementation_dba_data: MSC.MSC_SYSTEM_ITEMS ,
-
Lookup Type: MSC_SYSTEM_ITEMS
12.2.2
product: MSC - Advanced Supply Chain Planning , meaning: For Items , description: Field Prompts used for Personal Queries ,
-
Lookup Type: MSC_SYSTEM_ITEMS
12.1.1
product: MSC - Advanced Supply Chain Planning , meaning: For Items , description: Field Prompts used for Personal Queries ,
-
View: MSC_ITEM_TASK_SR_LEVELS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ITEM_TASK_SR_LEVELS_V, object_name:MSC_ITEM_TASK_SR_LEVELS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_ITEM_TASK_SR_LEVELS_V ,
-
View: MSC_ITEM_TASK_SR_LEVELS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ITEM_TASK_SR_LEVELS_V, object_name:MSC_ITEM_TASK_SR_LEVELS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_ITEM_TASK_SR_LEVELS_V ,
-
View: MSC_PROJECT_ITEMS_TREE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_PROJECT_ITEMS_TREE_V, object_name:MSC_PROJECT_ITEMS_TREE_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: this view shows all the project items in the tree , implementation_dba_data: APPS.MSC_PROJECT_ITEMS_TREE_V ,
-
View: MSC_PROJECT_ITEMS_TREE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_PROJECT_ITEMS_TREE_V, object_name:MSC_PROJECT_ITEMS_TREE_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: this view shows all the project items in the tree , implementation_dba_data: APPS.MSC_PROJECT_ITEMS_TREE_V ,
-
Table: MSC_SEQUENCE_DEPENDENT_SETUPS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_SEQUENCE_DEPENDENT_SETUPS, object_name:MSC_SEQUENCE_DEPENDENT_SETUPS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: The table stores the sequence dependent setups and tears down. This is used by HLS to ensure a minimun delay between two operations using the same resource. , implementation_dba_data: MSC.MSC_SEQUENCE_DEPENDENT_SETUPS ,
-
Table: MSC_SEQUENCE_DEPENDENT_SETUPS
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_SEQUENCE_DEPENDENT_SETUPS, object_name:MSC_SEQUENCE_DEPENDENT_SETUPS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: The table stores the sequence dependent setups and tears down. This is used by HLS to ensure a minimun delay between two operations using the same resource. , implementation_dba_data: MSC.MSC_SEQUENCE_DEPENDENT_SETUPS ,
-
View: MSC_BOD_SOURCING_RULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_BOD_SOURCING_RULES_V, object_name:MSC_BOD_SOURCING_RULES_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_BOD_SOURCING_RULES_V ,
-
Table: MSC_DEMANDS
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_DEMANDS, object_name:MSC_DEMANDS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This table stores all the demands taken into account for planning. Disposition_id would be a foreign key to MSC_SUPPLIES for dependent demands. For independent demands, disposition_id holds MRP_SCHEDULE_DATES.MPS_TRANSACTION_ID. , implementation_dba_data: MSC.MSC_DEMANDS ,
-
View: OLD_ITEM_SOURCING_LEVELS_V
12.2.2
product: MSC - Advanced Supply Chain Planning , implementation_dba_data: Not implemented in this database ,
-
View: MSC_BOD_TASK_SR_LEVELS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_BOD_TASK_SR_LEVELS_V, object_name:MSC_BOD_TASK_SR_LEVELS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_BOD_TASK_SR_LEVELS_V ,
-
View: MSC_COMPONENTS_SC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_COMPONENTS_SC_V, object_name:MSC_COMPONENTS_SC_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This view shows all the components in the tree , implementation_dba_data: APPS.MSC_COMPONENTS_SC_V ,
-
View: MSC_COMPONENTS_SC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_COMPONENTS_SC_V, object_name:MSC_COMPONENTS_SC_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This view shows all the components in the tree , implementation_dba_data: APPS.MSC_COMPONENTS_SC_V ,
-
View: MSC_BOD_TASK_SR_LEVELS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_BOD_TASK_SR_LEVELS_V, object_name:MSC_BOD_TASK_SR_LEVELS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_BOD_TASK_SR_LEVELS_V ,
-
View: MSC_BOD_SOURCING_RULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_BOD_SOURCING_RULES_V, object_name:MSC_BOD_SOURCING_RULES_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_BOD_SOURCING_RULES_V ,
-
Table: MSC_DEMANDS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_DEMANDS, object_name:MSC_DEMANDS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This table stores all the demands taken into account for planning. Disposition_id would be a foreign key to MSC_SUPPLIES for dependent demands. For independent demands, disposition_id holds MRP_SCHEDULE_DATES.MPS_TRANSACTION_ID. , implementation_dba_data: MSC.MSC_DEMANDS ,
-
View: MSC_RESOURCE_ITEMS_TREE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_RESOURCE_ITEMS_TREE_V, object_name:MSC_RESOURCE_ITEMS_TREE_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_RESOURCE_ITEMS_TREE_V ,
-
View: MSC_RESOURCE_ITEMS_TREE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_RESOURCE_ITEMS_TREE_V, object_name:MSC_RESOURCE_ITEMS_TREE_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_RESOURCE_ITEMS_TREE_V ,
-
View: OLD_ITEM_SOURCING_LEVELS_V
12.1.1
product: MSC - Advanced Supply Chain Planning , implementation_dba_data: Not implemented in this database ,
-
View: MSC_ITEMS_TREE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ITEMS_TREE_V, object_name:MSC_ITEMS_TREE_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_ITEMS_TREE_V ,
-
View: MSC_ITEMS_TREE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ITEMS_TREE_V, object_name:MSC_ITEMS_TREE_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_ITEMS_TREE_V ,
-
View: MSC_ACTION_ORDERS_TREE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ACTION_ORDERS_TREE_V, object_name:MSC_ACTION_ORDERS_TREE_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: Ths view shows the recommendations in the tree , implementation_dba_data: APPS.MSC_ACTION_ORDERS_TREE_V ,
-
View: MSC_ACTION_ORDERS_TREE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ACTION_ORDERS_TREE_V, object_name:MSC_ACTION_ORDERS_TREE_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: Ths view shows the recommendations in the tree , implementation_dba_data: APPS.MSC_ACTION_ORDERS_TREE_V ,
-
View: MSC_ITEM_SOURCING_LEVELS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ITEM_SOURCING_LEVELS_V, object_name:MSC_ITEM_SOURCING_LEVELS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: this view picks up all the sources at various levels for an item , implementation_dba_data: APPS.MSC_ITEM_SOURCING_LEVELS_V ,
-
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_ITEM_SOURCING_LEVELS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ITEM_SOURCING_LEVELS_V, object_name:MSC_ITEM_SOURCING_LEVELS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: this view picks up all the sources at various levels for an item , implementation_dba_data: APPS.MSC_ITEM_SOURCING_LEVELS_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_CONSTRAINED_FORECAST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_CONSTRAINED_FORECAST_V, object_name:MSC_CONSTRAINED_FORECAST_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_CONSTRAINED_FORECAST_V ,
-
View: MSC_CONSTRAINED_FORECAST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_CONSTRAINED_FORECAST_V, object_name:MSC_CONSTRAINED_FORECAST_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_CONSTRAINED_FORECAST_V ,
-
Table: MSC_ST_SYSTEM_ITEMS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_ST_SYSTEM_ITEMS, object_name:MSC_ST_SYSTEM_ITEMS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: The staging table used by the collection program to valid and process data for table MSC_SYSTEM_ITEMS. , implementation_dba_data: MSC.MSC_ST_SYSTEM_ITEMS ,
-
Table: MSC_SAFETY_STOCKS
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_SAFETY_STOCKS, object_name:MSC_SAFETY_STOCKS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: Safety stock levels , implementation_dba_data: MSC.MSC_SAFETY_STOCKS ,
-
View: MSC_PUBLISH_ITEMS_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_PUBLISH_ITEMS_LOV_V, object_name:MSC_PUBLISH_ITEMS_LOV_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_PUBLISH_ITEMS_LOV_V ,
-
View: MSC_SCATP_ITEM_SR_LEVELS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SCATP_ITEM_SR_LEVELS_V, object_name:MSC_SCATP_ITEM_SR_LEVELS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_SCATP_ITEM_SR_LEVELS_V ,
-
View: MSC_PRODUCT_FAMILIES_TREE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_PRODUCT_FAMILIES_TREE_V, object_name:MSC_PRODUCT_FAMILIES_TREE_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_PRODUCT_FAMILIES_TREE_V ,
-
Table: MSC_ST_SYSTEM_ITEMS
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_ST_SYSTEM_ITEMS, object_name:MSC_ST_SYSTEM_ITEMS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: The staging table used by the collection program to valid and process data for table MSC_SYSTEM_ITEMS. , implementation_dba_data: MSC.MSC_ST_SYSTEM_ITEMS ,
-
Table: MSC_SAFETY_STOCKS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_SAFETY_STOCKS, object_name:MSC_SAFETY_STOCKS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: Safety stock levels , implementation_dba_data: MSC.MSC_SAFETY_STOCKS ,
-
View: MSC_PRODUCT_FAMILIES_TREE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_PRODUCT_FAMILIES_TREE_V, object_name:MSC_PRODUCT_FAMILIES_TREE_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_PRODUCT_FAMILIES_TREE_V ,
-
Table: MSC_AVAILABLE_TO_PROMISE
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_AVAILABLE_TO_PROMISE, object_name:MSC_AVAILABLE_TO_PROMISE, status:VALID, product: MSC - Advanced Supply Chain Planning , description: Available to promise information for master scheduled parts , implementation_dba_data: MSC.MSC_AVAILABLE_TO_PROMISE ,
-
Table: MSC_AVAILABLE_TO_PROMISE
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_AVAILABLE_TO_PROMISE, object_name:MSC_AVAILABLE_TO_PROMISE, status:VALID, product: MSC - Advanced Supply Chain Planning , description: Available to promise information for master scheduled parts , implementation_dba_data: MSC.MSC_AVAILABLE_TO_PROMISE ,
-
Table: MSC_RESERVATIONS
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_RESERVATIONS, object_name:MSC_RESERVATIONS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: Material reservations , implementation_dba_data: MSC.MSC_RESERVATIONS ,
-
Table: MSC_ABC_CLASSES
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_ABC_CLASSES, object_name:MSC_ABC_CLASSES, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This table describes the classification of inventory goods into class A, B, C class types. , implementation_dba_data: MSC.MSC_ABC_CLASSES ,
-
Table: MSC_RESERVATIONS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_RESERVATIONS, object_name:MSC_RESERVATIONS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: Material reservations , implementation_dba_data: MSC.MSC_RESERVATIONS ,
-
Table: MSC_ABC_CLASSES
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_ABC_CLASSES, object_name:MSC_ABC_CLASSES, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This table describes the classification of inventory goods into class A, B, C class types. , implementation_dba_data: MSC.MSC_ABC_CLASSES ,
-
View: MSC_PUBLISH_ITEMS_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_PUBLISH_ITEMS_LOV_V, object_name:MSC_PUBLISH_ITEMS_LOV_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_PUBLISH_ITEMS_LOV_V ,
-
View: 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, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_EXC_DETAIL_ITEM_V ,
-
View: 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, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_EXC_DETAIL_ITEM_V ,
-
Table: MSC_ITEM_SUPPLIERS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_ITEM_SUPPLIERS, object_name:MSC_ITEM_SUPPLIERS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This table stores the processing lead time, order modifier, and delivery calendar information for each item - supplier/site. , implementation_dba_data: MSC.MSC_ITEM_SUPPLIERS ,