Search Results msc_category_sets
Overview
The MSC_CATEGORY_SETS table is a core data repository within the Oracle E-Business Suite Advanced Supply Chain Planning (ASCP) module. It serves as the master table for defining and storing the various category sets available for classifying items within the planning engine. In Oracle EBS, a category set is a grouping of item categories, enabling flexible classification schemes for different business purposes, such as planning, procurement, or reporting. This table's primary role is to provide the structural definition for these classification schemes, which are then populated with specific item-category assignments stored in related tables. It is a fundamental object for maintaining item master data integrity within the ASCP environment across both releases 12.1.1 and 12.2.2.
Key Information Stored
The central piece of information stored is the unique identifier for each category set. Based on the provided metadata, the primary key column is CATEGORY_SET_ID. While the full column list is not detailed in the excerpt, typical columns in such a table would include the category set name, a description, and control flags (e.g., to indicate if it is a default set or controlled at the master or organization level). The table essentially holds the header-level information for a classification structure, with the detailed mappings of specific items to categories within each set maintained in the child table MSC_ITEM_CATEGORIES.
Common Use Cases and Queries
This table is primarily referenced for setup validation, data integrity checks, and reporting on item classification structures within planning. A common use case is verifying which category sets are available for use in planning parameters or sourcing rules. A typical query would join MSC_CATEGORY_SETS to MSC_ITEM_CATEGORIES and the planning item master (MSC_SYSTEM_ITEMS) to generate a report of all items and their assigned categories for a specific classification set. For example:
- Identifying all category sets defined in the planning instance:
SELECT category_set_id, category_set_name FROM msc_category_sets; - Validating item-category assignments by joining to related tables:
SELECT msi.item_name, mic.category_id, mcs.category_set_name FROM msc_system_items msi, msc_item_categories mic, msc_category_sets mcs WHERE msi.inventory_item_id = mic.inventory_item_id AND mic.category_set_id = mcs.category_set_id;
Related Objects
As indicated by the foreign key relationships, MSC_CATEGORY_SETS is a parent table to several critical planning tables. The most direct relationship is with MSC_ITEM_CATEGORIES, which stores the actual assignments of items to categories within each set defined in MSC_CATEGORY_SETS. Another key relationship is with MSC_SR_ASSIGNMENTS, which links sourcing rules to specific categories within a category set, enabling category-based sourcing strategies. These relationships underscore the table's role as a foundational reference for organizing items and defining business rules based on item classification within Oracle Advanced Supply Chain Planning.
-
Table: MSC_CATEGORY_SETS
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_CATEGORY_SETS, object_name:MSC_CATEGORY_SETS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This tables stores different category sets for an item. , implementation_dba_data: MSC.MSC_CATEGORY_SETS ,
-
Table: MSC_CATEGORY_SETS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_CATEGORY_SETS, object_name:MSC_CATEGORY_SETS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This tables stores different category sets for an item. , implementation_dba_data: MSC.MSC_CATEGORY_SETS ,
-
APPS.MSC_ACTIONS dependencies on MSC_CATEGORY_SETS
12.1.1
-
APPS.MSC_UTIL dependencies on MSC_CATEGORY_SETS
12.2.2
-
APPS.MSC_GANTT_UTILS dependencies on MSC_CATEGORY_SETS
12.1.1
-
APPS.MSC_CL_ITEM_ODS_LOAD dependencies on MSC_CATEGORY_SETS
12.1.1
-
APPS.MSC_NETCHANGE_PKG dependencies on MSC_CATEGORY_SETS
12.2.2
-
APPS.GMP_PLNG_DTL_REPORT_PKG dependencies on MSC_CATEGORY_SETS
12.2.2
-
APPS.GMP_PLNG_DTL_REPORT_PKG dependencies on MSC_CATEGORY_SETS
12.1.1
-
APPS.MSC_ACTIONS dependencies on MSC_CATEGORY_SETS
12.2.2
-
APPS.MSC_GET_NAME dependencies on MSC_CATEGORY_SETS
12.2.2
-
APPS.MSC_CL_ITEM_ODS_LOAD dependencies on MSC_CATEGORY_SETS
12.2.2
-
APPS.MSC_GANTT_UTILS dependencies on MSC_CATEGORY_SETS
12.2.2
-
APPS.MSC_GET_NAME dependencies on MSC_CATEGORY_SETS
12.1.1
-
APPS.MSC_NETCHANGE_PKG dependencies on MSC_CATEGORY_SETS
12.1.1
-
MATERIALIZED VIEW: APPS.MSC_PHUB_ITEM_CATEGORIES_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:MSC_PHUB_ITEM_CATEGORIES_MV, status:VALID,
-
VIEW: APPS.MSC_CATEGORY_SETS_DFV
12.1.1
-
MATERIALIZED VIEW: APPS.MSC_PHUB_CATEGORIES_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:MSC_PHUB_CATEGORIES_MV, status:VALID,
-
VIEW: APPS.MSC_CATEGORY_SETS_DFV
12.2.2
-
APPS.MSC_CL_ITEM_ODS_LOAD dependencies on MSC_ST_CATEGORY_SETS
12.2.2
-
VIEW: APPS.ISC_MSC_BIS_CATEGORY_SETS_V
12.1.1
-
VIEW: MSC.MSC_CATEGORY_SETS#
12.2.2
owner:MSC, object_type:VIEW, object_name:MSC_CATEGORY_SETS#, status:VALID,
-
SYNONYM: APPS.MSC_CATEGORY_SETS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MSC_CATEGORY_SETS, status:VALID,
-
VIEW: APPS.MSC_PUSH_CATEGORY_V
12.1.1
-
VIEW: APPS.MSC_PUSH_CATEGORY_V
12.2.2
-
SYNONYM: APPS.MSC_CATEGORY_SETS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MSC_CATEGORY_SETS, status:VALID,
-
VIEW: APPS.ISC_MSC_BIS_PLANS_V
12.1.1
-
APPS.MSC_CL_ITEM_ODS_LOAD dependencies on MSC_ST_CATEGORY_SETS
12.1.1
-
VIEW: APPS.MSC_PLAN_CATEGORIES_V
12.2.2
-
VIEW: MSC.MSC_CATEGORY_SETS#
12.2.2
-
VIEW: APPS.MSC_PLAN_CATEGORIES_V
12.1.1
-
Table: MSC_ITEM_CATEGORIES
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_ITEM_CATEGORIES, object_name:MSC_ITEM_CATEGORIES, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This table stores the item assignment to categories within a category set. , implementation_dba_data: MSC.MSC_ITEM_CATEGORIES ,
-
Table: MSC_ITEM_CATEGORIES
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_ITEM_CATEGORIES, object_name:MSC_ITEM_CATEGORIES, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This table stores the item assignment to categories within a category set. , implementation_dba_data: MSC.MSC_ITEM_CATEGORIES ,
-
Table: MSC_ST_CATEGORY_SETS
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_ST_CATEGORY_SETS, object_name:MSC_ST_CATEGORY_SETS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: The staging table used by the collection program to validate and process data for table MSC_CATEGORY_SETS. , implementation_dba_data: MSC.MSC_ST_CATEGORY_SETS ,
-
Table: MSC_SR_ASSIGNMENTS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_SR_ASSIGNMENTS, object_name:MSC_SR_ASSIGNMENTS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This table stores the assignment of sourcing rules (or bills of distribution) to item, organization, category, or at the global level. , implementation_dba_data: MSC.MSC_SR_ASSIGNMENTS ,
-
Table: MSC_SR_ASSIGNMENTS
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_SR_ASSIGNMENTS, object_name:MSC_SR_ASSIGNMENTS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This table stores the assignment of sourcing rules (or bills of distribution) to item, organization, category, or at the global level. , implementation_dba_data: MSC.MSC_SR_ASSIGNMENTS ,
-
Table: MSC_ST_CATEGORY_SETS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_ST_CATEGORY_SETS, object_name:MSC_ST_CATEGORY_SETS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: The staging table used by the collection program to validate and process data for table MSC_CATEGORY_SETS. , implementation_dba_data: MSC.MSC_ST_CATEGORY_SETS ,
-
MATERIALIZED VIEW: APPS.MSC_PHUB_ITEM_CATEGORIES_MV
12.1.1
-
MATERIALIZED VIEW: APPS.MSC_PHUB_CATEGORIES_MV
12.1.1
-
PACKAGE BODY: APPS.GMP_PLNG_DTL_REPORT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMP_PLNG_DTL_REPORT_PKG, status:VALID,
-
VIEW: APPS.MSC_CATEGORY_SETS_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_CATEGORY_SETS_DFV, status:VALID,
-
PACKAGE BODY: APPS.MSC_NETCHANGE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_NETCHANGE_PKG, status:VALID,
-
PACKAGE BODY: APPS.MSC_ACTIONS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_ACTIONS, status:VALID,
-
PACKAGE BODY: APPS.MSC_ACTIONS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_ACTIONS, status:VALID,
-
VIEW: APPS.MSD_DEMAND_PLANS_VL
12.1.1
-
VIEW: APPS.MSD_DEMAND_PLANS_VL
12.2.2
-
VIEW: APPS.MSC_CATEGORY_SETS_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:MSC_CATEGORY_SETS_DFV, status:VALID,
-
PACKAGE BODY: APPS.MSC_GANTT_UTILS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_GANTT_UTILS, status:VALID,
-
PACKAGE BODY: APPS.MSC_GANTT_UTILS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_GANTT_UTILS, status:VALID,
-
PACKAGE BODY: APPS.GMP_PLNG_DTL_REPORT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMP_PLNG_DTL_REPORT_PKG, status:VALID,