Search Results org_vendor
Overview
APPS.MSC_SR_VIEW_EXP_V is a supplementary view in the Oracle E-Business Suite Applications schema (APPS), classified under the Advanced Supply Chain Planning (ASCP) module and delivered through the MSC product family. The view's FND design data identifier is MSC.MSC_SR_VIEW_EXP_V, and its status is VALID in both Oracle EBS 12.1.1 and 12.2.2. Oracle explicitly documents this object as a supplementary view intended to simplify Oracle Forms coding. Oracle does not recommend that customers query or alter data through it, because its definition may change dramatically in subsequent minor or major releases.
Functionally, the view presents sourcing-rule and sourcing-receipt information that combines organization, vendor, and allocation attributes. The name SR_VIEW_EXP reflects its role as an "expanded" sourcing view, exposing denormalized descriptive columns such as vendor name, vendor site, source organization code, and the derived ORG_VENDOR column. This makes it convenient for planning reports and integration extracts that must present sourcing data in a human-readable, concatenated form without joining the underlying transactional tables.
Underlying Base Objects
The documented dependency list for APPS.MSC_SR_VIEW_EXP_V identifies four referenced objects:
MSC_SR_RECEIPT_ORG(referenced as a SYNONYM) — supplies the sourcing-receipt and receipt-organization context, including SOURCING_RULE_ID, SR_RECEIPT_ID, RECEIPT_ORGANIZATION_ID, and RECEIPT_ORG_INSTANCE_ID.MSC_SR_SOURCE_ORG_V(VIEW) — provides the source organization and source-type information that drives the expanded sourcing output.MSC_GET_NAME(PACKAGE) — a server-side utility package used to resolve identifiers into descriptive names; this is consistent with the view exposing resolved values such as source organization code and vendor name.MFG_LOOKUPS(VIEW) — the standard Oracle lookups view, used to translate coded values such as SOURCE_TYPE into meaningful descriptions.
The metadata states that APPS.MSC_SR_VIEW_EXP_V is not referenced by any database object, confirming that it is a terminal, leaf-level view. All four base objects reside in the APPS schema, so no cross-schema privileges are required to query it. Because the view is a Forms-supporting construct rather than a documented integration interface, its column list should be treated as subject to change.
Key Columns
The view exposes twenty columns, which fall into logical groups:
- Sourcing identifiers: SOURCING_RULE_ID, SR_RECEIPT_ID, SR_INSTANCE_ID, and SR_SOURCE_ID.
- Receipt organization context: RECEIPT_ORGANIZATION_ID and RECEIPT_ORG_INSTANCE_ID.
- Source organization context: SOURCE_TYPE (VARCHAR2(80)), SOURCE_ORGANIZATION_ID, SOURCE_ORG_INSTANCE_ID, and SOURCE_ORGANIZATION_CODE (VARCHAR2(4000)).
- Vendor attributes: VENDOR_NAME (VARCHAR2(4000)) and VENDOR_SITE (VARCHAR2(4000)).
- Allocation and routing: ALLOCATION_PERCENT, RANK, SHIP_METHOD, and INTRANSIT_TIME.
- Derived output: ORG_VENDOR (VARCHAR2(4000)), the concatenated organization-and-vendor descriptor that is central to the view's purpose.
The VARCHAR2(4000) datatypes on the descriptive columns reflect that they are populated by concatenation and name-resolution logic rather than by direct column storage. This is the source of the term org_vendor that a user searching on the object would encounter.
Common Use Cases and Queries
The primary practical use of APPS.MSC_SR_VIEW_EXP_V is troubleshooting and read-only reporting on sourcing rules and their allocation splits. A typical diagnostic query retrieves the sourcing rule, source organization, vendor, and allocation percentage for a given receipt organization:
SELECT SOURCING_RULE_ID, SOURCE_ORGANIZATION_CODE, VENDOR_NAME, VENDOR_SITE, ALLOCATION_PERCENT, RANK, ORG_VENDOR FROM APPS.MSC_SR_VIEW_EXP_V WHERE RECEIPT_ORGANIZATION_ID = :org_id ORDER BY RANK;
Because ORG_VENDOR is a derived descriptor, it is frequently useful in validation queries that compare the concatenated value against the separately exposed SOURCE_ORGANIZATION_CODE and VENDOR_NAME columns to confirm the view's name-resolution behavior:
SELECT SOURCING_RULE_ID, ORG_VENDOR, ALLOCATION_PERCENT FROM APPS.MSC_SR_VIEW_EXP_V WHERE ORG_VENDOR LIKE '%' || :vendor_fragment || '%';
Users should treat results as read-only, avoid embedding the view in custom database objects, and re-validate the column list following any patch or upgrade, because Oracle reserves the right to redefine this Forms-oriented view between releases.
-
VIEW: APPS.MSC_SR_VIEW_EXP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SR_VIEW_EXP_V, object_name:MSC_SR_VIEW_EXP_V, status:VALID,
-
VIEW: APPS.MSC_SR_VIEW_EXP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SR_VIEW_EXP_V, object_name:MSC_SR_VIEW_EXP_V, status:VALID,
-
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: MSC_SR_VIEW_EXP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SR_VIEW_EXP_V, object_name:MSC_SR_VIEW_EXP_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_SR_VIEW_EXP_V ,
-
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: 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 ,
-
View: MSC_SR_VIEW_EXP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SR_VIEW_EXP_V, object_name:MSC_SR_VIEW_EXP_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_SR_VIEW_EXP_V ,
-
eTRM - MRP Tables and Views
12.2.2
description: Recommendations based on user criteria selected in MRP Planner WorkBench ,
-
eTRM - MRP Tables and Views
12.1.1
description: Recommendations based on user criteria selected in MRP Planner WorkBench ,
-
eTRM - MSC Tables and Views
12.1.1
description: This table contains the mapping between user-defined zone and included regions ,
-
eTRM - MSC Tables and Views
12.2.2
description: This table contains the mapping between user-defined zone and included regions ,