Search Results mrp_item_sourcing_levels_v
Overview
MRP_ITEM_SOURCING_LEVELS_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, defined over the Master Scheduling/MRP (MRP) product tables. It presents the sourcing rules and sourcing assignments that govern how inventory items are replenished or transferred across organizations, suppliers, and customers. The view consolidates, for each inventory item and organization combination, the applicable sourcing rule, the source organization or vendor, allocation percentages, ranking, transit and shipping attributes, and the effective and disable dates of the associated receipt organization. The constant column SOURCING_LEVEL is returned as 1, indicating that the rows surfaced here represent item-level sourcing.
Because sourcing rules are central to planning, procurement, and inter-org transfer logic, this view functions as a convenient reporting and integration access point. Rather than joining the multiple assignment, sourcing rule, source organization, and receipt organization tables directly, planners, report developers, and integration interfaces can query a single object to retrieve the sourcing configuration of an item.
Underlying Base Objects
The documented base objects referenced by the view include MRP_SR_ASSIGNMENTS, MRP_SOURCING_RULES, MRP_SR_RECEIPT_ORG, MRP_SR_SOURCE_ORG, MTL_SYSTEM_ITEMS, MTL_INTERORG_SHIP_METHODS, MRP_ASSIGNMENT_SETS, MTL_ITEM_CATEGORIES, and MTL_PARAMETERS, all accessed through APPS synonyms. The core join path links MRP_SR_ASSIGNMENTS (the assignment of a sourcing rule to an item and organization, with ASSIGNMENT_TYPE constrained to 6 for ITEM-ORG) to MRP_SOURCING_RULES through SOURCING_RULE_ID. The receipt organization table MRP_SR_RECEIPT_ORG links by SR_RECEIPT_ID and supplies the effective and disable dates and the receipt organization. The source organization table MRP_SR_SOURCE_ORG supplies the source organization, vendor, allocation percent, and rank. Shipping attributes are drawn from MTL_INTERORG_SHIP_METHODS, joined on the from-organization and ship method, with item-organization context supplied by MTL_SYSTEM_ITEMS. The rule status is restricted to active (STATUS = 1), and outward joins accommodate missing shipping method data.
Key Columns
- INVENTORY_ITEM_ID and ORGANIZATION_ID — identify the item and the owning organization for which sourcing is defined.
- ASSIGNMENT_TYPE and ASSIGNMENT_SET_ID — describe the assignment category and the assignment set; the view restricts assignment type to ITEM-ORG.
- SOURCING_RULE_ID, SOURCING_RULE_NAME, and SOURCING_RULE_TYPE — identify the sourcing rule and its type (for example, transfer from another organization or buy from a supplier).
- SOURCE_ORGANIZATION_ID, VENDOR_ID, VENDOR_SITE_ID, SOURCE_TYPE — designate the source of supply, whether an internal organization or an external supplier and site.
- ALLOCATION_PERCENT and RANK — express how demand is apportioned across multiple sources and the priority order of each source.
- INTRANSIT_TIME, TIME_UOM_CODE, and SHIP_METHOD — describe expected transit duration and shipping method for the source.
- EFFECTIVE_DATE and DISABLE_DATE — bound the validity period of the receipt organization association.
- CATEGORY_ID, CUSTOMER_ID, SHIP_TO_SITE_ID, DESCRIPTION, and SOURCING_LEVEL — provide category, customer, ship-to, descriptive, and level context.
Common Use Cases and Queries
Typical uses include auditing the sourcing configuration of a specific item, validating that sourcing assignments and their effective dates align with planning assumptions, and feeding sourcing data into custom reports or integrations. The following query lists sourcing sources for a given item and organization:
SELECT inventory_item_id,
organization_id,
sourcing_rule_name,
sourcing_rule_type,
source_organization_id,
vendor_id,
allocation_percent,
rank,
effective_date,
disable_date
FROM apps.mrp_item_sourcing_levels_v
WHERE inventory_item_id = :item_id
AND organization_id = :org_id
ORDER BY rank;
A second scenario examines all items sourcing from a particular organization, supporting inter-org transfer analysis:
SELECT inventory_item_id,
organization_id,
source_organization_id,
allocation_percent,
rank
FROM apps.mrp_item_sourcing_levels_v
WHERE source_organization_id = :source_org_id
ORDER BY inventory_item_id, rank;
Because SOURCING_LEVEL is fixed at 1 and assignment type is limited to ITEM-ORG, the view should be treated as an item-level sourcing source, with the effective and disable dates used to filter active configuration at the planning date.
-
View: MRP_ITEM_SOURCING_LEVELS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_ITEM_SOURCING_LEVELS_V, object_name:MRP_ITEM_SOURCING_LEVELS_V, status:VALID, product: MRP - Master Scheduling/MRP , description: Inventory items sources view , implementation_dba_data: APPS.MRP_ITEM_SOURCING_LEVELS_V ,
-
View: MRP_ITEM_SOURCING_LEVELS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_ITEM_SOURCING_LEVELS_V, object_name:MRP_ITEM_SOURCING_LEVELS_V, status:VALID, product: MRP - Master Scheduling/MRP , description: Inventory items sources view , implementation_dba_data: APPS.MRP_ITEM_SOURCING_LEVELS_V ,
-
VIEW: APPS.MRP_SOURCES_V
12.1.1
-
VIEW: APPS.MRP_SOURCES_V
12.2.2
-
APPS.CSP_REPAIR_ORDER_PKG SQL Statements
12.2.2
-
APPS.CSP_PLANNED_ORDERS SQL Statements
12.2.2
-
APPS.CSP_PLANNED_ORDERS SQL Statements
12.1.1
-
VIEW: APPS.ICX_PO_SUPPLIER_ITEMS_V
12.1.1
-
View: MRP_SOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_SOURCES_V, object_name:MRP_SOURCES_V, status:VALID, product: MRP - Master Scheduling/MRP , description: Inventory item source view , implementation_dba_data: APPS.MRP_SOURCES_V ,
-
View: MRP_SOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_SOURCES_V, object_name:MRP_SOURCES_V, status:VALID, product: MRP - Master Scheduling/MRP , description: Inventory item source view , implementation_dba_data: APPS.MRP_SOURCES_V ,
-
VIEW: APPS.ICX_PO_SUPPLIER_ITEMS_V
12.2.2
-
VIEW: APPS.PO_AUTOSOURCE_RULES_V
12.1.1
-
VIEW: APPS.PO_AUTOSOURCE_RULES_V
12.2.2
-
PACKAGE BODY: APPS.CSP_REPAIR_ORDER_PKG
12.2.2
-
View: PO_AUTOSOURCE_RULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_AUTOSOURCE_RULES_V, object_name:PO_AUTOSOURCE_RULES_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_AUTOSOURCE_RULES_V ,
-
SYNONYM: APPS.MRP_SR_ASSIGNMENTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MRP_SR_ASSIGNMENTS, status:VALID,
-
PACKAGE BODY: APPS.MRP_SOURCING_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MRP_SOURCING_GRP, status:VALID,
-
View: POS_PO_SUPPLIER_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_SUPPLIER_ITEMS_V POS.POS_PO_SUPPLIER_ITEMS_V, object_name:POS_PO_SUPPLIER_ITEMS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_PO_SUPPLIER_ITEMS_V ,
-
PACKAGE BODY: APPS.POR_AUTOSOURCE_UTIL_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:POR_AUTOSOURCE_UTIL_PKG, status:VALID,
-
SYNONYM: APPS.MRP_SR_SOURCE_ORG
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MRP_SR_SOURCE_ORG, status:VALID,
-
View: ICX_PO_SUPPLIER_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_SUPPLIER_ITEMS_V, object_name:ICX_PO_SUPPLIER_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Supplier Items View , implementation_dba_data: APPS.ICX_PO_SUPPLIER_ITEMS_V ,
-
PACKAGE BODY: APPS.MRP_SOURCING_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MRP_SOURCING_GRP, status:VALID,
-
PACKAGE BODY: APPS.CSP_REPAIR_ORDER_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSP_REPAIR_ORDER_PKG, status:VALID,
-
View: ICX_PO_SUPPLIER_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_SUPPLIER_ITEMS_V, object_name:ICX_PO_SUPPLIER_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Supplier Items View , implementation_dba_data: APPS.ICX_PO_SUPPLIER_ITEMS_V ,
-
PACKAGE BODY: APPS.MRP_SOURCING_API_PK
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MRP_SOURCING_API_PK, status:VALID,
-
PACKAGE BODY: APPS.CSP_PLANNED_ORDERS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSP_PLANNED_ORDERS, status:VALID,
-
PACKAGE BODY: APPS.POR_AUTOSOURCE_UTIL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:POR_AUTOSOURCE_UTIL_PKG, status:VALID,
-
SYNONYM: APPS.MRP_SR_SOURCE_ORG
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MRP_SR_SOURCE_ORG, status:VALID,
-
PACKAGE BODY: APPS.CSP_PLANNED_ORDERS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSP_PLANNED_ORDERS, status:VALID,
-
PACKAGE BODY: APPS.MRP_SOURCING_API_PK
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MRP_SOURCING_API_PK, status:VALID,
-
SYNONYM: APPS.MRP_SOURCING_RULES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MRP_SOURCING_RULES, status:VALID,
-
SYNONYM: APPS.MRP_ASSIGNMENT_SETS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MRP_ASSIGNMENT_SETS, status:VALID,
-
View: PO_AUTOSOURCE_RULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_AUTOSOURCE_RULES_V, object_name:PO_AUTOSOURCE_RULES_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_AUTOSOURCE_RULES_V ,
-
SYNONYM: APPS.MRP_SR_ASSIGNMENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MRP_SR_ASSIGNMENTS, status:VALID,
-
SYNONYM: APPS.MRP_SR_RECEIPT_ORG
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MRP_SR_RECEIPT_ORG, status:VALID,
-
SYNONYM: APPS.MRP_ASSIGNMENT_SETS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MRP_ASSIGNMENT_SETS, status:VALID,
-
View: POS_PO_SUPPLIER_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_SUPPLIER_ITEMS_V, object_name:POS_PO_SUPPLIER_ITEMS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_PO_SUPPLIER_ITEMS_V ,
-
PACKAGE BODY: APPS.CSP_PLAN_DETAILS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSP_PLAN_DETAILS_PKG, status:VALID,
-
PACKAGE BODY: APPS.CSP_PLAN_DETAILS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSP_PLAN_DETAILS_PKG, status:VALID,
-
SYNONYM: APPS.MRP_SR_RECEIPT_ORG
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MRP_SR_RECEIPT_ORG, status:VALID,
-
SYNONYM: APPS.MTL_INTERORG_SHIP_METHODS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_INTERORG_SHIP_METHODS, status:VALID,
-
SYNONYM: APPS.MRP_SOURCING_RULES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MRP_SOURCING_RULES, status:VALID,
-
SYNONYM: APPS.MTL_INTERORG_SHIP_METHODS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_INTERORG_SHIP_METHODS, status:VALID,
-
PACKAGE BODY: APPS.CSP_PLANNER_NOTIFICATIONS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSP_PLANNER_NOTIFICATIONS, status:VALID,
-
PACKAGE BODY: APPS.CSP_PLANNER_NOTIFICATIONS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSP_PLANNER_NOTIFICATIONS, status:VALID,
-
PACKAGE BODY: APPS.CSP_SCH_INT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSP_SCH_INT_PVT, status:VALID,
-
VIEW: APPS.PO_AUTOSOURCE_RULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_AUTOSOURCE_RULES_V, object_name:PO_AUTOSOURCE_RULES_V, status:VALID,
-
PACKAGE BODY: APPS.RLM_MANAGE_DEMAND_SV
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RLM_MANAGE_DEMAND_SV, status:VALID,
-
PACKAGE BODY: APPS.RLM_MANAGE_DEMAND_SV
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:RLM_MANAGE_DEMAND_SV, status:VALID,
-
12.2.2 DBA Data
12.2.2