Search Results mrp_sr_view_exp_v
Overview
MRP_SR_VIEW_EXP_V is an Oracle E-Business Suite database view owned by the APPS schema and defined within the MRP (Master Scheduling/MRP) product family. Its documented purpose is to present a sourcing rule / bill of distribution (BOD) expanded view. In other words, rather than exposing individual sourcing rule header and assignment tables in their normalized form, this view flattens the sourcing rule receipt organization data together with its associated source lines into a single, query-ready projection that includes resolved lookup meanings. This makes it particularly useful for reporting and integration scenarios where a complete picture of a sourcing rule's receipt organization and source organizations or vendors is required in one pass.
The view maintains a VALID status in ETRM for both Oracle EBS 12.1.1 and 12.2.2. Its reliance on standard MRP sourcing rule objects means the data it exposes reflects the sourcing rules and bills of distribution configured in the planning application.
Underlying Base Objects
The documented view text defines a join across three principal objects: MRP_SR_RECEIPT_ORG (accessed through a synonym), MRP_SR_SOURCE_ORG_V (a view), and MFG_LOOKUPS (a view). Additional documented referenced base objects include the FND_GLOBAL package.
- MRP_SR_RECEIPT_ORG (REC) — supplies the sourcing rule receipt-side identifiers: SOURCING_RULE_ID, SR_RECEIPT_ID, and RECEIPT_ORGANIZATION_ID.
- MRP_SR_SOURCE_ORG_V (SOUR) — supplies the source-side attributes such as SR_SOURCE_ID, SOURCE_TYPE, SOURCE_ORGANIZATION_ID, SOURCE_ORGANIZATION_CODE, VENDOR_NAME, VENDOR_SITE, ALLOCATION_PERCENT, RANK, SHIP_METHOD, and INTRANSIT_TIME.
- MFG_LOOKUPS (LOOK) — resolves the SOURCE_TYPE lookup code into its display MEANING using LOOKUP_TYPE = 'MRP_SOURCE_TYPE'.
The join condition links REC.SR_RECEIPT_ID to SOUR.SR_RECEIPT_ID. A filter excludes rows where SOUR.SOURCE_TYPE is 2, and the lookup join is constrained by both the lookup type and matching lookup code. Because the source-side object is itself a view, the expanded view effectively nests over additional sourcing rule source logic.
Key Columns
The view exposes the following documented columns:
- SOURCING_RULE_ID — identifier of the parent sourcing rule.
- SR_RECEIPT_ID — identifier of the receipt organization assignment record.
- RECEIPT_ORGANIZATION_ID — the organization receiving the sourced supply.
- SR_SOURCE_ID — identifier of the individual source line.
- SOURCE_TYPE — resolved lookup meaning describing the source category.
- SOURCE_ORGANIZATION_ID — source organization, coalesced to 0 via NVL when null.
- SOURCE_ORGANIZATION_CODE — descriptive code of the source organization.
- VENDOR_NAME / VENDOR_SITE — supplier details when the source is a vendor.
- ALLOCATION_PERCENT — percentage of supply allocated to the source line.
- RANK — priority ranking of the source.
- SHIP_METHOD / INTRANSIT_TIME — shipping method and lead time.
- ORG_VENDOR — a concatenation of SOURCE_ORGANIZATION_CODE and VENDOR_NAME for convenient display.
Common Use Cases and Queries
Typical uses include reporting on sourcing rule definitions across organizations, validating allocation percentages and ranks, and feeding planning or integration processes that require expanded sourcing rule data. A basic query follows:
SELECT sourcing_rule_id, receipt_organization_id, source_type, source_organization_code, vendor_name, allocation_percent, rank FROM apps.mrp_sr_view_exp_v WHERE sourcing_rule_id = :p_rule_id ORDER BY rank;
Because the view already resolves the source type meaning and concatenates organization and vendor, it is well suited to ad hoc reporting and data extraction without requiring additional lookup joins.
-
View: MRP_SR_VIEW_EXP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_SR_VIEW_EXP_V, object_name:MRP_SR_VIEW_EXP_V, status:VALID, product: MRP - Master Scheduling/MRP , description: Sourcing rule/BOD expanded view , implementation_dba_data: APPS.MRP_SR_VIEW_EXP_V ,
-
View: MRP_SR_VIEW_EXP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_SR_VIEW_EXP_V, object_name:MRP_SR_VIEW_EXP_V, status:VALID, product: MRP - Master Scheduling/MRP , description: Sourcing rule/BOD expanded view , implementation_dba_data: APPS.MRP_SR_VIEW_EXP_V ,
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.MRP_SR_RECEIPT_ORG
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MRP_SR_RECEIPT_ORG, status:VALID,
-
SYNONYM: APPS.MRP_SR_RECEIPT_ORG
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MRP_SR_RECEIPT_ORG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.MRP_SR_VIEW_EXP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_SR_VIEW_EXP_V, object_name:MRP_SR_VIEW_EXP_V, status:VALID,
-
VIEW: APPS.MRP_SR_VIEW_EXP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_SR_VIEW_EXP_V, object_name:MRP_SR_VIEW_EXP_V, status:VALID,
-
VIEW: APPS.MRP_SR_SOURCE_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_SR_SOURCE_ORG_V, object_name:MRP_SR_SOURCE_ORG_V, status:VALID,
-
VIEW: APPS.MRP_SR_SOURCE_ORG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_SR_SOURCE_ORG_V, object_name:MRP_SR_SOURCE_ORG_V, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.MFG_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MFG_LOOKUPS, object_name:MFG_LOOKUPS, status:VALID,
-
VIEW: APPS.MFG_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MFG_LOOKUPS, object_name:MFG_LOOKUPS, status:VALID,
-
eTRM - MRP Tables and Views
12.1.1
description: Recommendations based on user criteria selected in MRP Planner WorkBench ,
-
eTRM - MRP Tables and Views
12.2.2
description: Recommendations based on user criteria selected in MRP Planner WorkBench ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - INV Tables and Views
12.1.1
-
PACKAGE: APPS.FND_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - MRP Tables and Views
12.1.1
description: Recommendations based on user criteria selected in MRP Planner WorkBench ,
-
eTRM - MRP Tables and Views
12.2.2
description: Recommendations based on user criteria selected in MRP Planner WorkBench ,
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2