Search Results source_organization_name
Overview
The APPS.PO_REQEXPRESS_LINES_V view is a Purchasing (PO) module reporting object in Oracle E-Business Suite 12.1.1 and 12.2.2. It denormalizes the PO_REQEXPRESS_LINES base table by joining it to line type, lookup, organization, vendor, vendor site, and vendor contact information, producing a single row per requisition express line enriched with descriptive attributes. The view is marked VALID and is maintained by Oracle as a "retrofitted" object, meaning it was carried into the current release while retaining its original column interface for backward compatibility with existing forms, reports, and integrations.
Because the view exposes both the raw foreign-key columns and their resolved descriptive values, it is well suited to reporting and integration scenarios where a self-service or iProcurement-style requisition express template must be rendered without additional lookups at the application tier.
Underlying Base Objects
The FROM clause lists seven objects: PO_REQEXPRESS_LINES (synonym to the base table), PO_LINE_TYPES (synonym), PO_LOOKUP_CODES (view), ORG_ORGANIZATION_DEFINITIONS (view), PO_VENDORS (view), PO_VENDOR_SITES_ALL (view), and PO_VENDOR_CONTACTS (view). It also calls PO_INQ_SV.GET_PERSON_NAME and is documented as referencing FND_GLOBAL, HR_GENERAL, and HR_SECURITY packages, which support security and person-name resolution. The joins to PO_VENDORS, PO_VENDOR_SITES_ALL, and PO_VENDOR_CONTACTS are outer joins (identified by the (+) operator), so a requisition express line is returned even when no suggested vendor, site, or contact is recorded. PO_LINE_TYPES and PO_LOOKUP_CODES are inner-joined on LINE_TYPE_ID and on the 'REQUISITION SOURCE TYPE' lookup, and ORG_ORGANIZATION_DEFINITIONS is outer-joined on SOURCE_ORGANIZATION_ID.
Key Columns
- SUGGESTED_VENDOR_CONTACT_ID — the foreign key into PO_VENDOR_CONTACTS; the view resolves it through VC.LAST_NAME and VC.FIRST_NAME via a DECODE expression to produce a displayable contact name. This is the column most relevant to the search term suggested_vendor_contact_id.
- SUGGESTED_VENDOR_ID / SUGGESTED_VENDOR_SITE_ID — joined to PO_VENDORS.VENDOR_NAME and PO_VENDOR_SITES_ALL.VENDOR_SITE_CODE respectively.
- EXPRESS_NAME, SEQUENCE_NUM — identify the express template and the line's position within it.
- ITEM_ID, CATEGORY_ID, UNIT_PRICE, SUGGESTED_QUANTITY, AMOUNT — item and pricing attributes carried from the base table.
- SOURCE_TYPE_CODE, VENDOR_SOURCE_CONTEXT, SOURCE_ORGANIZATION_ID, SOURCE_SUBINVENTORY — sourcing context; SOURCE_ORGANIZATION_ID resolves to ORGANIZATION_NAME.
- SUGGESTED_BUYER_ID — resolved to a person name through PO_INQ_SV.GET_PERSON_NAME.
- ATTRIBUTE1–ATTRIBUTE15 and ATTRIBUTE_CATEGORY — the standard DFF columns exposed for extensibility.
- _WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) and ROWID — audit and row-identity columns.
Common Use Cases and Queries
Typical usage includes validating express-line vendor/contact assignments, exporting template lines for interface processing, and building report queries that need the contact name without a secondary join.
SELECT EXPRESS_NAME, SEQUENCE_NUM, ITEM_DESCRIPTION, VENDOR_NAME, VENDOR_SITE_CODE, SUGGESTED_VENDOR_CONTACT_ID FROM APPS.PO_REQEXPRESS_LINES_V WHERE EXPRESS_NAME = :p_express_name ORDER BY SEQUENCE_NUM;
SELECT EXPRESS_NAME, SUGGESTED_VENDOR_CONTACT_ID,
VENDOR_NAME, VENDOR_SITE_CODE
FROM APPS.PO_REQEXPRESS_LINES_V
WHERE SUGGESTED_VENDOR_ID = :p_vendor_id
AND ORG_ID = :p_org_id;
The second query illustrates filtering on the resolved vendor while still surfacing the contact ID, a pattern commonly used when auditing which express templates reference a given supplier contact.
-
View: PO_REQEXPRESS_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQEXPRESS_LINES_V, object_name:PO_REQEXPRESS_LINES_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_REQEXPRESS_LINES_V ,
-
View: PO_REQEXPRESS_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQEXPRESS_LINES_V, object_name:PO_REQEXPRESS_LINES_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_REQEXPRESS_LINES_V ,
-
View: POFV_INBOUND_SHIPMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_INBOUND_SHIPMENTS, object_name:POFV_INBOUND_SHIPMENTS, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POFV_INBOUND_SHIPMENTS ,
-
View: POFV_INBOUND_SHIPMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_INBOUND_SHIPMENTS, object_name:POFV_INBOUND_SHIPMENTS, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POFV_INBOUND_SHIPMENTS ,
-
View: POFV_INBOUND_SHIPMENT_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_INBOUND_SHIPMENT_LINES, object_name:POFV_INBOUND_SHIPMENT_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_INBOUND_SHIPMENT_LINES ,
-
View: POFV_INBOUND_SHIPMENT_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_INBOUND_SHIPMENT_LINES, object_name:POFV_INBOUND_SHIPMENT_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_INBOUND_SHIPMENT_LINES ,
-
View: POFV_REQUISITION_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_REQUISITION_LINES, object_name:POFV_REQUISITION_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_REQUISITION_LINES ,
-
View: POFV_REQUISITION_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_REQUISITION_LINES, object_name:POFV_REQUISITION_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_REQUISITION_LINES ,