Search Results pos_po_summary_v
Overview
POS_PO_SUMMARY_V is a database view owned by the APPS schema in Oracle E-Business Suite, defined within the iSupplier Portal (POS) product family. Its documented purpose is to display all purchase orders, consolidating header-level purchasing data with vendor, vendor site, and agent information into a single denormalized result set suitable for supplier-facing and internal reporting. The view resides in the APPS schema with a status of VALID in both 12.1.1 and 12.2.2.
The view derives its PO_RELEASE_FLAG column from a literal 'PO' value, distinguishing the rows it returns from the corresponding iSupplier Portal summary view used for releases. Because it joins purchase order headers to vendor master and vendor site records and resolves agent names through a cached function call, it serves as a convenient read-only source for listing purchasers, suppliers, terms, and status attributes without requiring callers to reconstruct the multi-table join themselves. It is not a base table and should never be used as a target for DML.
Underlying Base Objects
The view is defined primarily over PO_HEADERS_ALL (accessed through a synonym), supplying the overwhelming majority of its columns. It is joined to PO_VENDORS and PO_VENDOR_SITES_ALL (both views/synonyms) for vendor name and address data, and to AP_TERMS for payment term names. Agent names are retrieved via the POS_GET package function GET_PERSON_NAME_CACHE, and messages for PO type descriptions are resolved through FND_MESSAGE.GET_STRING.
Documented referenced objects also include PO_RELEASES_ALL, PO_ACCEPTANCES, PO_LOOKUP_CODES, PO_INQ_SV, POS_TOTALS_PO_SV, FND_LOOKUP_VALUES_VL, FND_CURRENCY_CACHE, FND_GLOBAL, HR_ALL_ORGANIZATION_UNITS_TL, and HR_LOCATIONS_ALL. These support lookup decoding, currency information, organization and location resolution, and totals or inquiry functionality exposed elsewhere in the iSupplier Portal. The structure therefore reflects a reporting aggregation layer rather than a transactional table.
Key Columns
- PO_RELEASE_FLAG — literal 'PO'; identifies the row source within the iSupplier Portal summary views.
- PO_HEADER_ID / PO_NUM (SEGMENT1) — unique internal identifier and the human-readable purchase order number.
- VENDOR_ID, VENDOR_NAME, VENDOR_SITE_ID, VENDOR_SITE_CODE — supplier identity and ship-to supplier site.
- ADDRESS_LINE1..3, CITY, STATE, ZIP, COUNTRY, PHONE, FAX — formatted vendor site address and contact details.
- AUTHORIZATION_STATUS, CLOSED_CODE, CANCEL_FLAG, FROZEN_FLAG, USER_HOLD_FLAG, FIRM_STATUS_LOOKUP_CODE — lifecycle and hold status attributes, with NVL defaults ('INCOMPLETE', 'OPEN', 'N').
- AGENT_ID / AGENT_NAME — buyer identifier and resolved buyer name.
- TYPE_LOOKUP_CODE — decoded to a display string such as STANDARD, BLANKET, CONTRACT, or PLANNED via FND_MESSAGE.
- TERMS_ID, CURRENCY_CODE, RATE, RATE_TYPE, RATE_DATE, FOB_LOOKUP_CODE, FREIGHT_TERMS_LOOKUP_CODE, SHIP_VIA_LOOKUP_CODE — commercial and shipping terms.
- APPROVED_DATE, REVISED_DATE, REVISION_NUM, PRINTED_DATE, PRINT_COUNT, ACCEPTANCE_DUE_DATE, FIRM_DATE — approval, revision, and printing history.
- Comments and notes — COMMENTS, NOTE_TO_AUTHORIZER, NOTE_TO_RECEIVER, NOTE_TO_VENDOR.
Common Use Cases and Queries
Typical uses include supplier portal dashboards, buyer workload reports, and integration extracts that require PO header data with vendor address and agent names pre-resolved. A basic inquiry by PO number is shown below.
- List open purchase orders by supplier: SELECT po_num, vendor_name, authorization_status, closed_code FROM pos_po_summary_v WHERE vendor_name = :vendor AND closed_code = 'OPEN';
- Buyer workload extract: SELECT agent_name, COUNT(*) FROM pos_po_summary_v WHERE authorization_status = 'APPROVED' GROUP BY agent_name;
- Supplier site detail for a PO: SELECT po_num, vendor_site_code, address_line1, city, state, zip, country, phone FROM pos_po_summary_v WHERE po_header_id = :header_id;
- Blanket and contract agreements: SELECT po_num, type_lookup_code, vendor_name FROM pos_po_summary_v WHERE type_lookup_code IN ('BLANKET','CONTRACT');
Because the view references cached package functions and multiple synonyms, query performance benefits from filtering on indexed columns such as PO_HEADER_ID or VENDOR_ID where possible. Reports should be aware that CANCEL_FLAG returns NULL when the underlying flag is 'I' and that several status columns are defaulted, so null-handling logic in downstream code should account for these transformations.
-
View: POS_PO_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_SUMMARY_V POS.POS_PO_SUMMARY_V, object_name:POS_PO_SUMMARY_V, status:VALID, product: POS - iSupplier Portal , description: Displays all Purchase Orders , implementation_dba_data: APPS.POS_PO_SUMMARY_V ,
-
View: POS_PO_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_SUMMARY_V POS.POS_PO_SUMMARY_V, object_name:POS_PO_SUMMARY_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_PO_SUMMARY_V ,
-
View: POS_PO_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_SUMMARY_V, object_name:POS_PO_SUMMARY_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_PO_SUMMARY_V ,
-
PACKAGE: APPS.POS_GET
12.1.1
owner:APPS, object_type:PACKAGE, object_name:POS_GET, status:VALID,
-
PACKAGE: APPS.POS_TOTALS_PO_SV
12.2.2
owner:APPS, object_type:PACKAGE, object_name:POS_TOTALS_PO_SV, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE: APPS.POS_GET
12.2.2
owner:APPS, object_type:PACKAGE, object_name:POS_GET, status:VALID,
-
PACKAGE: APPS.FND_CURRENCY_CACHE
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_CURRENCY_CACHE, status:VALID,
-
PACKAGE: APPS.POS_TOTALS_PO_SV
12.1.1
owner:APPS, object_type:PACKAGE, object_name:POS_TOTALS_PO_SV, status:VALID,
-
SYNONYM: APPS.PO_ACCEPTANCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_ACCEPTANCES, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.FND_CURRENCY_CACHE
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_CURRENCY_CACHE, status:VALID,
-
PACKAGE: APPS.PO_INQ_SV
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PO_INQ_SV, status:VALID,
-
PACKAGE: APPS.PO_INQ_SV
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PO_INQ_SV, status:VALID,
-
SYNONYM: APPS.PO_ACCEPTANCES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_ACCEPTANCES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.AP_TERMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AP_TERMS, status:VALID,
-
SYNONYM: APPS.AP_TERMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AP_TERMS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.PO_RELEASES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_RELEASES_ALL, status:VALID,
-
SYNONYM: APPS.PO_RELEASES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_RELEASES_ALL, status:VALID,
-
VIEW: APPS.POS_PO_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_SUMMARY_V POS.POS_PO_SUMMARY_V, object_name:POS_PO_SUMMARY_V, status:VALID,
-
VIEW: APPS.POS_PO_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_SUMMARY_V, object_name:POS_PO_SUMMARY_V, status:VALID,
-
VIEW: APPS.PO_LOOKUP_CODES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LOOKUP_CODES, object_name:PO_LOOKUP_CODES, status:VALID,
-
VIEW: APPS.FND_LOOKUP_VALUES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_LOOKUP_VALUES_VL, object_name:FND_LOOKUP_VALUES_VL, status:VALID,
-
VIEW: APPS.FND_LOOKUP_VALUES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_LOOKUP_VALUES_VL, object_name:FND_LOOKUP_VALUES_VL, status:VALID,
-
VIEW: APPS.PO_LOOKUP_CODES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LOOKUP_CODES, object_name:PO_LOOKUP_CODES, status:VALID,
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS_TL, status:VALID,
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS_TL, status:VALID,
-
SYNONYM: APPS.HR_LOCATIONS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_LOCATIONS_ALL, status:VALID,
-
SYNONYM: APPS.HR_LOCATIONS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_LOCATIONS_ALL, status:VALID,
-
VIEW: APPS.PO_VENDOR_SITES_ALL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDOR_SITES_ALL, object_name:PO_VENDOR_SITES_ALL, status:VALID,
-
VIEW: APPS.PO_VENDOR_SITES_ALL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDOR_SITES_ALL, object_name:PO_VENDOR_SITES_ALL, status:VALID,
-
SYNONYM: APPS.PO_HEADERS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_HEADERS_ALL, status:VALID,
-
SYNONYM: APPS.PO_HEADERS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_HEADERS_ALL, status:VALID,
-
VIEW: APPS.PO_VENDORS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
VIEW: APPS.PO_VENDORS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
eTRM - POS Tables and Views
12.2.2
description: This table is used during release 11i to release 12 upgrade. It stores vendor_ids of vendors who are considered in iSupplier Portal TCA Supplier upgrade scripts. ,
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
eTRM - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - PO Tables and Views
12.2.2
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.FND_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - POS Tables and Views
12.2.2
description: This table is used during release 11i to release 12 upgrade. It stores vendor_ids of vendors who are considered in iSupplier Portal TCA Supplier upgrade scripts. ,
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
PACKAGE: APPS.FND_MESSAGE
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_MESSAGE, status:VALID,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,