Search Results msc_x_exception_group
Overview
APPS.MSC_EXCEPTION_SUMMARY_V is a reporting view in the Oracle E-Business Suite Advanced Supply Chain Planning (ASCP) schema, owned by APPS and defined over planning exception data stored in the MSC tables. Its purpose is to present a consolidated, human-readable summary of planning exceptions raised against items during a plan run, joined to the lookup values that translate internal exception codes into descriptive text. Rather than exposing each individual exception row, the view aggregates exception counts by company, exception type, and exception group, making it suitable for exception dashboards, planner workbenches, and downstream reporting against the ASCP exception engine.
The view consolidates two distinct sources of exception definitions. The first branch resolves standard, seeded exception types against FND_LOOKUP_VALUES using the lookup type MSC_X_EXCEPTION_TYPE. The second branch, joined via UNION ALL, resolves user-defined exceptions held in MSC_USER_EXCEPTIONS, identified by the sentinel exception group value -99. Both branches join the exception group code back to FND_LOOKUP_VALUES using lookup type MSC_X_EXCEPTION_GROUP, so that the group is rendered as a meaningful name in every case.
Underlying Base Objects
The ETRM metadata lists three referenced base objects, all exposed through synonyms in the APPS schema:
MSC_ITEM_EXCEPTIONS— the core fact table holding per-item planning exception rows, includingCOMPANY_ID,EXCEPTION_TYPE,EXCEPTION_GROUP,EXCEPTION_COUNT, andVERSION.MSC_USER_EXCEPTIONS— the definition table for user-defined exceptions, supplyingEXCEPTION_IDandNAMEfor the secondUNION ALLbranch.FND_LOOKUP_VALUES— the standard Oracle Applications lookup value table, referenced twice in the query (aliasedFLVfor exception types andFLV_GROUPfor exception groups), filtered toLANGUAGE = 'US'.
The view therefore functions as a semantic layer over the raw exception staging tables, translating lookup codes into printed names and rolling up counts.
Key Columns
COMPANY_ID— the operating unit or company context for the aggregated exception counts.EXCEPTION_TYPE— the descriptive meaning of the exception, drawn fromFLV.MEANINGfor standard exceptions or fromMSC_USER_EXCEPTIONS.NAMEfor user-defined ones.EXCEPTION_TYPE_ID— the underlying lookup code for standard exceptions, or theTO_CHARofEXCEPTION_IDfor user-defined exceptions.EXCEPTION_GROUP— the descriptive group name resolved fromFLV_GROUP.MEANINGagainst lookup typeMSC_X_EXCEPTION_GROUP.SUM(MIE.EXCEPTION_COUNT)— the aggregated number of exceptions for the given company, type, and group combination.
Common Use Cases and Queries
Because the view already aggregates and filters out zero-count rows via the HAVING SUM(...) > 0 clause, it is typically consumed directly by planners and reporting tools that need a ranked list of exceptions. A simple query returning the highest-volume exceptions is:
SELECT company_id, exception_group, exception_type, SUM(exception_count) FROM msc_exception_summary_v GROUP BY company_id, exception_group, exception_type ORDER BY 4 DESC;- Filtering by group:
SELECT * FROM msc_exception_summary_v WHERE exception_group = 'Late Supply'; - Isolating user-defined exceptions (group code -99 source) by joining back to
MSC_USER_EXCEPTIONSon the numeric type id.
Report writers frequently search for the FLV_GROUP alias because it is the join that yields the readable EXCEPTION_GROUP column; understanding that mapping is essential when extending the view or building custom exception summaries.
-
Lookup Type: MSC_X_EXCEPTION_GROUP
12.1.1
product: MSC - Advanced Supply Chain Planning , meaning: Supply chain exchange Exception Groups , description: Supply chain exchange Exception Groups ,
-
Lookup Type: MSC_X_EXCEPTION_GROUP
12.2.2
product: MSC - Advanced Supply Chain Planning , meaning: Supply chain exchange Exception Groups , description: Supply chain exchange Exception Groups ,
-
VIEW: APPS.MSC_EXCEPTION_SUMMARY_V
12.1.1
-
VIEW: APPS.MSC_EXCEPTION_LOOKUP_V
12.1.1
-
VIEW: APPS.MSC_EXCEPTION_SUMMARY_V
12.2.2
-
VIEW: APPS.MSC_EXCEPTION_LOOKUP_V
12.2.2
-
View: MSC_EXCEPTION_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_EXCEPTION_SUMMARY_V, object_name:MSC_EXCEPTION_SUMMARY_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_EXCEPTION_SUMMARY_V ,
-
View: MSC_EXCEPTION_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_EXCEPTION_SUMMARY_V, object_name:MSC_EXCEPTION_SUMMARY_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_EXCEPTION_SUMMARY_V ,
-
VIEW: APPS.MSC_EXCEPTION_THRESHOLDS_V
12.1.1
-
View: MSC_EXCEPTION_LOOKUP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_EXCEPTION_LOOKUP_V, object_name:MSC_EXCEPTION_LOOKUP_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_EXCEPTION_LOOKUP_V ,
-
View: MSC_EXCEPTION_LOOKUP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_EXCEPTION_LOOKUP_V, object_name:MSC_EXCEPTION_LOOKUP_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_EXCEPTION_LOOKUP_V ,
-
VIEW: APPS.MSC_EXCEPTION_THRESHOLDS_V
12.2.2
-
View: MSC_EXCEPTION_THRESHOLDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_EXCEPTION_THRESHOLDS_V, object_name:MSC_EXCEPTION_THRESHOLDS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_EXCEPTION_THRESHOLDS_V ,
-
View: MSC_EXCEPTION_THRESHOLDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_EXCEPTION_THRESHOLDS_V, object_name:MSC_EXCEPTION_THRESHOLDS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_EXCEPTION_THRESHOLDS_V ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.MSC_X_NETTING_PKG SQL Statements
12.2.2
-
APPS.MSC_X_NETTING_PKG SQL Statements
12.1.1
-
APPS.MSC_X_NETTING_PKG dependencies on MFG_LOOKUPS
12.1.1
-
APPS.MSC_X_NETTING_PKG dependencies on MFG_LOOKUPS
12.2.2
-
APPS.MSC_X_USER_EXCEP_GEN dependencies on FND_LOOKUP_VALUES
12.2.2
-
APPS.MSC_X_USER_EXCEP_GEN dependencies on FND_LOOKUP_VALUES
12.1.1
-
APPS.MSC_X_USER_EXCEP_GEN SQL Statements
12.2.2
-
APPS.MSC_X_USER_EXCEP_GEN SQL Statements
12.1.1
-
PACKAGE BODY: APPS.MSC_X_NETTING_PKG
12.2.2
-
PACKAGE BODY: APPS.MSC_X_NETTING_PKG
12.1.1
-
PACKAGE BODY: APPS.MSC_X_USER_EXCEP_GEN
12.1.1
-
PACKAGE BODY: APPS.MSC_X_USER_EXCEP_GEN
12.2.2