Search Results source_org
Overview
MSC_ITEM_TASK_SR_LEVELS_V is an Advanced Supply Chain Planning (MSC) view owned by the APPS schema that flattens the sourcing hierarchy for a given item into a single denormalized result set. It assembles sourcing assignments, sourcing rules, and the source and receipt organization details into one row per item/sourcing-level combination, adding a SOURCING_LEVEL column and the resolved plan context (via MSC_PLAN_ORGANIZATIONS_V) so downstream consumers can evaluate which organizations are permitted to supply a planning item.
The view is used internally by planning and sourcing-level resolution logic and by custom reporting that needs to present sourcing hierarchies in a report-friendly shape. Because the query carries an explicit ORDERED hint plus INDEX and USE_NL hints pinning the assignment lookup to the MSC_SR_ASSIGNMENTS_U2 index, the view is sensitive to index availability on the underlying objects — a point directly relevant to the search term msc_sr_assignments_u2. If that index is dropped, rebuilt, or disabled, the nested-loops plan degraded and view performance changes measurably.
Underlying Base Objects
The view is defined against the following documented base objects, joined via nested loops in the order hinted:
- MSC_SR_ASSIGNMENTS (synonym) — sourcing-rule assignments linking items to assignment sets; drives the
MSC_SR_ASSIGNMENTS_U2index access. - MSC_SOURCING_RULES (synonym) — the sourcing rule header, supplying rule type, name, and description.
- MSC_SR_RECEIPT_ORG (synonym) — receipt organization and effective/disable date information.
- MSC_SR_SOURCE_ORG (synonym) — the actual source organization, partner, rank, allocation percent, and source type.
- MSC_SYSTEM_ITEMS (synonym) — the planning item master (
ITEMS) and a second instance (COMP_ITEMS) referenced atPLAN_ID = -1for item attribute resolution. - MSC_PLAN_ORGANIZATIONS_V (view) — supplies plan context and compile designator.
- MSC_ITEM_CATEGORIES and MSC_TRADING_PARTNERS (synonyms) — supporting objects used in the sourcing/partner resolution.
The join conditions tie items to assignments on SR_INSTANCE_ID, INVENTORY_ITEM_ID, and ORGANIZATION_ID, then link source organizations to receipt organizations through SR_RECEIPT_ID.
Key Columns
- INVENTORY_ITEM_ID / ORGANIZATION_ID / SR_INSTANCE_ID — item and instance identity carried from MSC_SYSTEM_ITEMS.
- PLAN_ID / COMPILE_DESIGNATOR — plan context from MSC_PLAN_ORGANIZATIONS_V.
- ASSIGNMENT_TYPE / ASSIGNMENT_SET_ID / ASSIGNMENT_ID — assignment attributes from MSC_SR_ASSIGNMENTS.
- SOURCING_RULE_TYPE / SOURCING_RULE_ID / SOURCING_RULE_NAME / DESCRIPTION — rule header attributes.
- SOURCE_ORGANIZATION_ID / SOURCE_ORG_INSTANCE_ID / SOURCE_PARTNER_ID / SOURCE_PARTNER_SITE_ID / SOURCE_TYPE — the resolved supply source.
- ALLOCATION_PERCENT / RANK — sourcing priority and split information.
- EFFECTIVE_DATE / DISABLE_DATE — validity window for the receipt organization.
- SOURCING_LEVEL — literal
1in the documented query text, identifying the hierarchy depth returned.
Common Use Cases and Queries
Typical uses include verifying which source organizations a planning item can source from, auditing sourcing-rule assignments, and feeding custom reports. A representative query:
SELECT inventory_item_id, organization_id, sourcing_rule_name, source_organization_id, allocation_percent, rank FROM msc_item_task_sr_levels_v WHERE inventory_item_id = :item_id;SELECT sourcing_rule_name, COUNT(*) FROM msc_item_task_sr_levels_v GROUP BY sourcing_rule_name ORDER BY 2 DESC;SELECT v.inventory_item_id, v.source_organization_id, v.effective_date FROM msc_item_task_sr_levels_v v WHERE SYSDATE BETWEEN v.effective_date AND NVL(v.disable_date, SYSDATE + 1);
Performance depends on the availability and validity of the MSC_SR_ASSIGNMENTS_U2 index and the other indexes named in the view's hint block; concurrent maintenance, statistics, or index rebuilds on those objects should be scheduled with awareness of this dependency.
-
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_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_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_ITEM_SR_LEVELS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ITEM_SR_LEVELS_V, object_name:MSC_ITEM_SR_LEVELS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: Inventory items sources view , implementation_dba_data: APPS.MSC_ITEM_SR_LEVELS_V ,
-
View: MSC_ITEM_SR_LEVELS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ITEM_SR_LEVELS_V, object_name:MSC_ITEM_SR_LEVELS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: Inventory items sources view , implementation_dba_data: APPS.MSC_ITEM_SR_LEVELS_V ,
-
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 ,
-
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_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 ,
-
View: MSC_SCATP_ITEM_SR_LEVELS_V
12.2.2
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_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_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: OLD_ITEM_SOURCING_LEVELS_V
12.2.2
product: MSC - Advanced Supply Chain Planning , implementation_dba_data: Not implemented in this database ,
-
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_PDR_VERT_LIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_PDR_VERT_LIST_V, object_name:MSC_PDR_VERT_LIST_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_PDR_VERT_LIST_V ,
-
View: MSC_PDR_VERT_LIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_PDR_VERT_LIST_V, object_name:MSC_PDR_VERT_LIST_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_PDR_VERT_LIST_V ,