Search Results buyer_name
Overview
APPS.GMP_PDR_BUYER_V is a reporting view in Oracle E-Business Suite that exposes the distinct set of buyer assignments held against system items. It is defined as a grouped projection over MSC_SYSTEM_ITEMS, filtering out any row where the buyer identifier is null. The view therefore functions as a lightweight buyer reference list rather than a transactional supply chain object, and it is typically consumed by planning, sourcing, and procurement reporting that must resolve a buyer_id to a buyer name within a specific organizational and planning context.
Because the view is owned by APPS and is built directly on an MSC synonym, it belongs to the Advanced Supply Chain Planning / Demand Planning data model rather than to the Purchasing (PO) or Process Manufacturing (GMP) base tables, despite the GMP_ prefix. In EBS 12.1.1 and 12.2.2 the definition is identical, and the view remains a read-only convenience layer intended to spare report developers from writing the DISTINCT logic themselves.
Underlying Base Objects
The view is defined over a single base object, MSC_SYSTEM_ITEMS, referenced through a synonym. MSC_SYSTEM_ITEMS is the planning system's item master, holding item, organization, instance, plan, and sourcing attributes collected from source instances for planning purposes. GMP_PDR_BUYER_V does not join to any other table; it simply groups and filters that source.
- Source object: MSC_SYSTEM_ITEMS (SYNONYM)
- Definition: SELECT buyer_name, buyer_id, organization_id, sr_instance_id, plan_id FROM msc_system_items WHERE buyer_id IS NOT NULL GROUP BY organization_id, sr_instance_id, plan_id, buyer_name, buyer_id
- Effect: all five projected columns participate in the GROUP BY, so the result is the set of unique buyer / organization / instance / plan combinations present in the planning item master.
Key Columns
- BUYER_ID — The internal identifier of the buyer. This is the column most frequently searched, and it is the filter predicate of the view: rows with a null BUYER_ID are excluded entirely.
- BUYER_NAME — The display name of the buyer. Because it is included in the GROUP BY, a single buyer_id can theoretically appear under more than one name if the source data is inconsistent.
- ORGANIZATION_ID — The inventory organization to which the buyer assignment applies.
- SR_INSTANCE_ID — The source system instance identifier, distinguishing records collected from different source applications.
- PLAN_ID — The planning plan with which the item record is associated, allowing the same item and buyer to be reported separately per plan.
Common Use Cases and Queries
Typical usage is validation or lookup: confirming which buyers exist for an organization, populating a buyer parameter list of values, or joining planning results back to a buyer name. A simple lookup by buyer follows.
SELECT buyer_name, buyer_id, organization_id, sr_instance_id, plan_id FROM apps.gmp_pdr_buyer_v WHERE buyer_id = :p_buyer_id;
To list all buyers for a specific organization and plan:
SELECT buyer_name, buyer_id FROM apps.gmp_pdr_buyer_v WHERE organization_id = :p_org_id AND plan_id = :p_plan_id ORDER BY buyer_name;
To produce a distinct buyer list across instances, the caller can further aggregate, for example SELECT DISTINCT buyer_id, buyer_name FROM apps.gmp_pdr_buyer_v. Because MSC_SYSTEM_ITEMS is a planning staging object, results reflect the most recent planning collection rather than live purchasing setup; where current, authoritative buyer information is required, the Purchasing buyers table should be used instead. Query performance benefits from filtering on organization_id, sr_instance_id, or plan_id, since these predicates reduce the grouped set before aggregation.
-
VIEW: APPS.GMP_PDR_BUYER_V
12.2.2
-
VIEW: ICX.ICX_POR_CONTRACT_REFERENCES#
12.2.2
-
VIEW: APPS.GMP_PDR_BUYER_V
12.1.1
-
VIEW: ICX.ICX_CAT_UPLOAD_PRICE_DUMP#
12.2.2
-
VIEW: ICX.POS_ACK_SELECT#
12.2.2
-
View: PON_MI_REPORTSUMMARY_V
12.2.2
product: PON - Sourcing , description: This view is used by the Buyer's Activity Summary report. It contains summarized data for all Awarded Auctions, Committed Offers and Accepted Quotations. , implementation_dba_data: Not implemented in this database ,
-
View: GMP_PDR_BUYER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMP.GMP_PDR_BUYER_V, object_name:GMP_PDR_BUYER_V, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Unique list of buyers from msc_system_items in each organization for an instance and plan , implementation_dba_data: APPS.GMP_PDR_BUYER_V ,
-
VIEW: MSC.MSC_APCC_ITEM_D_BAK#
12.2.2
-
View: PON_MI_REPORTSUMMARY_V
12.1.1
product: PON - Sourcing , description: This view is used by the Buyer's Activity Summary report. It contains summarized data for all Awarded Auctions, Committed Offers and Accepted Quotations. , implementation_dba_data: Not implemented in this database ,
-
View: GMP_PDR_BUYER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMP.GMP_PDR_BUYER_V, object_name:GMP_PDR_BUYER_V, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Unique list of buyers from msc_system_items in each organization for an instance and plan , implementation_dba_data: APPS.GMP_PDR_BUYER_V ,
-
VIEW: MSC.MSC_APCC_ITEM_D#
12.2.2
-
View: PON_MI_AUC_OFFERTOBUY_V
12.1.1
product: PON - Sourcing , description: This view is used by the Buyer's Activity Summary report. It contains data for all Committed Offers. , implementation_dba_data: Not implemented in this database ,
-
VIEW: OZF.OZF_OFFERS#
12.2.2
-
View: PON_MI_AUC_OFFERTOBUY_V
12.2.2
product: PON - Sourcing , description: This view is used by the Buyer's Activity Summary report. It contains data for all Committed Offers. , implementation_dba_data: Not implemented in this database ,
-
APPS.FLM_EKB_SUMMARY_UTIL SQL Statements
12.2.2
-
View: PON_MI_OFFERSUMMARY_V
12.1.1
product: PON - Sourcing , description: This view is used by the Committed Offers Detail report. It contains summarized data for all Committed Offers. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PON_MI_RFQSUMMARY_V
12.2.2
-
View: PON_MI_RFQSUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_RFQSUMMARY_V, object_name:PON_MI_RFQSUMMARY_V, status:VALID, product: PON - Sourcing , description: This view is used by the Accepted Quotations Detail report. It contains summarized data for all Accepted Quotations. , implementation_dba_data: APPS.PON_MI_RFQSUMMARY_V ,
-
View: PON_MI_RFQSUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_RFQSUMMARY_V, object_name:PON_MI_RFQSUMMARY_V, status:VALID, product: PON - Sourcing , description: This view is used by the Accepted Quotations Detail report. It contains summarized data for all Accepted Quotations. , implementation_dba_data: APPS.PON_MI_RFQSUMMARY_V ,
-
VIEW: APPS.PON_MI_RFQSUMMARY_V
12.1.1
-
VIEW: APPS.POS_ACK_EDIT_V
12.2.2
-
VIEW: APPS.PON_MI_AUCTIONSUMMARY_V
12.2.2
-
VIEW: APPS.PON_MI_AUCTIONSUMMARY_V
12.1.1
-
View: POS_ACK_EDIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POS_ACK_EDIT_V, object_name:POS_ACK_EDIT_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POS_ACK_EDIT_V ,
-
View: PON_MI_OFFERSUMMARY_V
12.2.2
product: PON - Sourcing , description: This view is used by the Committed Offers Detail report. It contains summarized data for all Committed Offers. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.SO_DROP_SHIP_LINKS_V
12.1.1
-
VIEW: APPS.POS_ACK_EDIT_V
12.1.1
-
View: POS_ACK_EDIT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POS_ACK_EDIT_V, object_name:POS_ACK_EDIT_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POS_ACK_EDIT_V ,
-
VIEW: APPS.GMP_PDR_BUYER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMP.GMP_PDR_BUYER_V, object_name:GMP_PDR_BUYER_V, status:VALID,
-
View: OE_DROP_SHIP_LINKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_DROP_SHIP_LINKS_V, object_name:OE_DROP_SHIP_LINKS_V, status:VALID, product: ONT - Order Management , description: This view is used for Dropship Tab in the additional line information of the Sales Orders form. , implementation_dba_data: APPS.OE_DROP_SHIP_LINKS_V ,
-
View: PON_MI_AUCTIONSUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_AUCTIONSUMMARY_V, object_name:PON_MI_AUCTIONSUMMARY_V, status:VALID, product: PON - Sourcing , description: This view is used for the Awarded Bids Detail report. It contains data for both Standard Purchase Orders and Blanket Purchase Agreements. , implementation_dba_data: APPS.PON_MI_AUCTIONSUMMARY_V ,
-
VIEW: APPS.POA_BIS_SAVINGS_BUYER_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POA_BIS_SAVINGS_BUYER_LOV_V, object_name:POA_BIS_SAVINGS_BUYER_LOV_V, status:VALID,
-
View: SO_DROP_SHIP_LINKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_DROP_SHIP_LINKS_V, object_name:SO_DROP_SHIP_LINKS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_DROP_SHIP_LINKS_V ,
-
View: SO_DROP_SHIP_LINKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_DROP_SHIP_LINKS_V, object_name:SO_DROP_SHIP_LINKS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_DROP_SHIP_LINKS_V ,
-
View: PON_MI_AUCTIONSUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_AUCTIONSUMMARY_V, object_name:PON_MI_AUCTIONSUMMARY_V, status:VALID, product: PON - Sourcing , description: This view is used for the Awarded Bids Detail report. It contains data for both Standard Purchase Orders and Blanket Purchase Agreements. , implementation_dba_data: APPS.PON_MI_AUCTIONSUMMARY_V ,
-
VIEW: MRP.MRP_SYSTEM_ITEMS#
12.2.2
-
VIEW: ICX.ICX_POR_CONTRACT_REFERENCES#
12.2.2
owner:ICX, object_type:VIEW, object_name:ICX_POR_CONTRACT_REFERENCES#, status:VALID,
-
View: PON_MI_AUC_RFQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_AUC_RFQ_V, object_name:PON_MI_AUC_RFQ_V, status:VALID, product: PON - Sourcing , description: This view is used by the Buyer's Activity Summary report. It contains data for all Accepted Quotations. , implementation_dba_data: APPS.PON_MI_AUC_RFQ_V ,
-
View: PON_MI_AUC_RFQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_AUC_RFQ_V, object_name:PON_MI_AUC_RFQ_V, status:VALID, product: PON - Sourcing , description: This view is used by the Buyer's Activity Summary report. It contains data for all Accepted Quotations. , implementation_dba_data: APPS.PON_MI_AUC_RFQ_V ,
-
VIEW: APPS.SO_DROP_SHIP_LINKS_V
12.2.2
-
View: PON_MI_AUC_BUYERAUC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_AUC_BUYERAUC_V, object_name:PON_MI_AUC_BUYERAUC_V, status:VALID, product: PON - Sourcing , description: This view is used by the Buyer's Activity Summary report. It contains data for all Awarded Auctions. , implementation_dba_data: APPS.PON_MI_AUC_BUYERAUC_V ,
-
VIEW: APPS.GMP_PDR_BUYER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMP.GMP_PDR_BUYER_V, object_name:GMP_PDR_BUYER_V, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.OE_DROP_SHIP_LINKS_V
12.1.1
-
VIEW: APPS.OE_DROP_SHIP_LINKS_V
12.2.2
-
View: OE_DROP_SHIP_LINKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_DROP_SHIP_LINKS_V, object_name:OE_DROP_SHIP_LINKS_V, status:VALID, product: ONT - Order Management , description: This view is used for Dropship Tab in the additional line information of the Sales Orders form. , implementation_dba_data: APPS.OE_DROP_SHIP_LINKS_V ,
-
VIEW: APPS.POFV_BUYERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_BUYERS, object_name:POFV_BUYERS, status:VALID,
-
VIEW: APPS.PO_BY_BUYER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_BY_BUYER_V, object_name:PO_BY_BUYER_V, status:VALID,
-
VIEW: APPS.PON_MI_AUC_RFQ_V
12.2.2