Search Results po_vend_mst
Overview
The PO_VEND_MST table is the central vendor master data repository within the GML (Process Manufacturing Logistics) module of Oracle E-Business Suite (EBS) versions 12.1.1 and 12.2.2. It serves as the system of record for all supplier entities, storing comprehensive information required for procurement, accounts payable, and logistics operations. Its role is foundational, as vendor data from this table integrates with core purchasing, receiving, and financial processes, enabling transaction processing, payment management, and supply chain analytics. The table's design supports multi-organization structures through its CO_CODE column and maintains data integrity through defined primary and foreign key relationships.
Key Information Stored
The table's structure is defined by several key columns that uniquely identify and describe a vendor. The primary identifier is VENDOR_ID, which serves as the system-generated primary key (PO_VEND_MST_PK). Business-facing identifiers include VENDOR_NO (vendor number) and VENDOR_NAME. The table enforces business uniqueness through two additional primary keys: one on the combination of CO_CODE and VENDOR_NO (PO_VEND_MSTI1), and another on VENDOR_NO, VENDSORT_NO, VENDOR_NAME, CO_CODE, INACTIVE_IND, and DELETE_MARK (PO_VEND_MSTI2). Critical descriptive and control columns include CO_CODE (company/organization), INACTIVE_IND, DELETE_MARK for soft-delete functionality, ADDR_ID and MAILADDR_ID linking to the SY_ADDR_MST table for addresses, and various classification codes (VEND_CLASS, VENDGL_CLASS, VENDTRADE_CLASS). It also stores transactional defaults like DEFAULT_CURRENCY, TERMS_CODE, and FRTBILL_MTHD (freight billing method).
Common Use Cases and Queries
This table is central to numerous operational and reporting activities. Common use cases include vendor lookup for purchase order creation, validation of vendor status during goods receipt, and supplier performance reporting. A typical query involves joining with address and organization tables to generate a comprehensive vendor list for a specific operating unit. For example, to retrieve active vendors with their primary address, one might use:
- SELECT v.VENDOR_NO, v.VENDOR_NAME, a.ADDRESS_LINE1, a.CITY FROM GML.PO_VEND_MST v JOIN APPS.SY_ADDR_MST a ON v.ADDR_ID = a.ADDR_ID WHERE v.CO_CODE = :p_org_id AND v.INACTIVE_IND = 'N' AND v.DELETE_MARK = 0;
Another common pattern is validating a vendor's existence and status before creating a purchase order header, ensuring the PAYVEND_ID or SHIPVEND_ID references a valid, active record in PO_VEND_MST.
Related Objects
PO_VEND_MST has extensive relationships, acting as a parent table for numerous transactional and setup entities. Key documented foreign key relationships include:
- Parent Tables (Referenced by PO_VEND_MST): SY_ORGN_MST/SY_ORGN_MST_B (CO_CODE), SY_ADDR_MST (ADDR_ID, MAILADDR_ID), GL_CURR_MST (DEFAULT_CURRENCY), OP_TERM_MST (TERMS_CODE), PO_VEND_CLS (VEND_CLASS), PO_VGLD_CLS (VENDGL_CLASS), PO_VTRD_CLS (VENDTRADE_CLASS), PO_TEXT_HDR (TEXT_CODE), OP_FRGT_MTH (FRTBILL_MTHD).
- Child Tables (Referencing PO_VEND_MST.VENDOR_ID): PO_VEND_ASC (VEND_ID, ASSOCVEND_ID), PO_VNIT_MST, GL_ACCT_MAP, OP_GNRC_ITM, QC_SPEC_MST, QC_SMPL_MST, QC_RSLT_MST, PO_RTRN_HDR (RETURN_VENDOR_ID).
- Transactional Child References (often as PAYVEND_ID or SHIPVEND_ID): PO_ORDR_HDR, PO_BPOS_HDR, PO_RECV_HDR, PO_ORDR_DTL, PO_BPOS_DTL, PO_RECV_DTL, IC_LOTS_MST.
-
Table: PO_VEND_MST
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_VEND_MST, object_name:PO_VEND_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor master. , implementation_dba_data: GML.PO_VEND_MST ,
-
Table: PO_VEND_MST
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_VEND_MST, object_name:PO_VEND_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor master. , implementation_dba_data: GML.PO_VEND_MST ,
-
Table: PO_VEND_ASC
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_VEND_ASC, object_name:PO_VEND_ASC, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor associations/relationships. , implementation_dba_data: GML.PO_VEND_ASC ,
-
Table: PO_VEND_ASC
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_VEND_ASC, object_name:PO_VEND_ASC, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor associations/relationships. , implementation_dba_data: GML.PO_VEND_ASC ,
-
View: OF_PO_VEND_ASC_VW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GML.OF_PO_VEND_ASC_VW, object_name:OF_PO_VEND_ASC_VW, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor Association View , implementation_dba_data: APPS.OF_PO_VEND_ASC_VW ,
-
Table: PO_RECV_HDR
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_RECV_HDR, object_name:PO_RECV_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Receipt header. , implementation_dba_data: GML.PO_RECV_HDR ,
-
Table: PO_RECV_HDR
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_RECV_HDR, object_name:PO_RECV_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Receipt header. , implementation_dba_data: GML.PO_RECV_HDR ,
-
Table: PO_BPOS_HDR
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_BPOS_HDR, object_name:PO_BPOS_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Header information for blanket purchase orders. , implementation_dba_data: GML.PO_BPOS_HDR ,
-
Table: PO_ORDR_HDR
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_ORDR_HDR, object_name:PO_ORDR_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Purchase order header. , implementation_dba_data: GML.PO_ORDR_HDR ,
-
View: OF_PO_VEND_ASC_VW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GML.OF_PO_VEND_ASC_VW, object_name:OF_PO_VEND_ASC_VW, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor Association View , implementation_dba_data: APPS.OF_PO_VEND_ASC_VW ,
-
Table: PO_BPOS_HDR
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_BPOS_HDR, object_name:PO_BPOS_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Header information for blanket purchase orders. , implementation_dba_data: GML.PO_BPOS_HDR ,
-
Table: PO_ORDR_HDR
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_ORDR_HDR, object_name:PO_ORDR_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Purchase order header. , implementation_dba_data: GML.PO_ORDR_HDR ,
-
View: PO_VEND_MST_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GML.PO_VEND_MST_V1, object_name:PO_VEND_MST_V1, status:VALID, product: GML - Process Manufacturing Logistics , description: View on vendor master table , implementation_dba_data: APPS.PO_VEND_MST_V1 ,
-
Table: PO_VGLD_CLS
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_VGLD_CLS, object_name:PO_VGLD_CLS, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor GL (General Ledger) classes. , implementation_dba_data: GML.PO_VGLD_CLS ,
-
Table: PO_VGLD_CLS
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_VGLD_CLS, object_name:PO_VGLD_CLS, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor GL (General Ledger) classes. , implementation_dba_data: GML.PO_VGLD_CLS ,
-
View: PO_VEND_MST_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GML.PO_VEND_MST_V1, object_name:PO_VEND_MST_V1, status:VALID, product: GML - Process Manufacturing Logistics , description: View on vendor master table , implementation_dba_data: APPS.PO_VEND_MST_V1 ,
-
Table: PO_VEND_CLS
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_VEND_CLS, object_name:PO_VEND_CLS, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor classes. , implementation_dba_data: GML.PO_VEND_CLS ,
-
Table: PO_VTRD_CLS
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_VTRD_CLS, object_name:PO_VTRD_CLS, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor trade class. , implementation_dba_data: GML.PO_VTRD_CLS ,
-
Table: PO_VTRD_CLS
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_VTRD_CLS, object_name:PO_VTRD_CLS, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor trade class. , implementation_dba_data: GML.PO_VTRD_CLS ,
-
Table: PO_VEND_CLS
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_VEND_CLS, object_name:PO_VEND_CLS, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor classes. , implementation_dba_data: GML.PO_VEND_CLS ,
-
Table: PO_RTRN_HDR
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_RTRN_HDR, object_name:PO_RTRN_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Return header. , implementation_dba_data: GML.PO_RTRN_HDR ,
-
Table: PO_VNIT_MST
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_VNIT_MST, object_name:PO_VNIT_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor Item Table not supported in OPM Purchasing. , implementation_dba_data: GML.PO_VNIT_MST ,
-
Table: PO_RTRN_HDR
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_RTRN_HDR, object_name:PO_RTRN_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Return header. , implementation_dba_data: GML.PO_RTRN_HDR ,
-
Table: PO_VNIT_MST
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_VNIT_MST, object_name:PO_VNIT_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor Item Table not supported in OPM Purchasing. , implementation_dba_data: GML.PO_VNIT_MST ,
-
Table: OP_TERM_MST
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_TERM_MST, object_name:OP_TERM_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Payment terms codes. , implementation_dba_data: GML.OP_TERM_MST ,
-
Table: OP_FRGT_MTH
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_FRGT_MTH, object_name:OP_FRGT_MTH, status:VALID, product: GML - Process Manufacturing Logistics , description: Freight bill method codes . , implementation_dba_data: GML.OP_FRGT_MTH ,
-
Table: OP_FRGT_MTH
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_FRGT_MTH, object_name:OP_FRGT_MTH, status:VALID, product: GML - Process Manufacturing Logistics , description: Freight bill method codes . , implementation_dba_data: GML.OP_FRGT_MTH ,
-
Table: OP_GNRC_ITM
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_GNRC_ITM, object_name:OP_GNRC_ITM, status:VALID, product: GML - Process Manufacturing Logistics , description: Customer and generic (alternate) names for items. , implementation_dba_data: GML.OP_GNRC_ITM ,
-
Table: OP_TERM_MST
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_TERM_MST, object_name:OP_TERM_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Payment terms codes. , implementation_dba_data: GML.OP_TERM_MST ,
-
Table: OP_GNRC_ITM
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_GNRC_ITM, object_name:OP_GNRC_ITM, status:VALID, product: GML - Process Manufacturing Logistics , description: Customer and generic (alternate) names for items. , implementation_dba_data: GML.OP_GNRC_ITM ,
-
Table: PO_RECV_DTL
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_RECV_DTL, object_name:PO_RECV_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Receipt lines. , implementation_dba_data: GML.PO_RECV_DTL ,
-
Table: PO_TEXT_HDR
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_TEXT_HDR, object_name:PO_TEXT_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Header text table for OPM Purchasing application. , implementation_dba_data: GML.PO_TEXT_HDR ,
-
Table: PO_RECV_DTL
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_RECV_DTL, object_name:PO_RECV_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Receipt lines. , implementation_dba_data: GML.PO_RECV_DTL ,
-
Table: PO_TEXT_HDR
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_TEXT_HDR, object_name:PO_TEXT_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Header text table for OPM Purchasing application. , implementation_dba_data: GML.PO_TEXT_HDR ,
-
Table: PO_ORDR_DTL
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_ORDR_DTL, object_name:PO_ORDR_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Purchase order lines. , implementation_dba_data: GML.PO_ORDR_DTL ,
-
Table: PO_BPOS_DTL
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_BPOS_DTL, object_name:PO_BPOS_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Blanket purchase order lines. , implementation_dba_data: GML.PO_BPOS_DTL ,
-
Table: PO_ORDR_DTL
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_ORDR_DTL, object_name:PO_ORDR_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Purchase order lines. , implementation_dba_data: GML.PO_ORDR_DTL ,
-
Table: PO_BPOS_DTL
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_BPOS_DTL, object_name:PO_BPOS_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Blanket purchase order lines. , implementation_dba_data: GML.PO_BPOS_DTL ,
-
View: PO_VEND_MSTI2_VW1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GML.PO_VEND_MSTI2_VW1, object_name:PO_VEND_MSTI2_VW1, status:VALID, product: GML - Process Manufacturing Logistics , description: View on vendor master table. , implementation_dba_data: APPS.PO_VEND_MSTI2_VW1 ,
-
View: PO_VEND_MSTI2_VW1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GML.PO_VEND_MSTI2_VW1, object_name:PO_VEND_MSTI2_VW1, status:VALID, product: GML - Process Manufacturing Logistics , description: View on vendor master table. , implementation_dba_data: APPS.PO_VEND_MSTI2_VW1 ,