Search Results ship_state_province
Overview
APPS.PO_HEADERS_CHANGE_PRINT is a reporting view in Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 that consolidates purchasing document header information required for change-order printing and purchase order audit reporting. It draws primarily from PO_HEADERS and the corresponding archive tables (PO_HEADERS_ARCHIVE, PO_HEADERS_ARCHIVE_ALL, PO_RELEASES_ARCHIVE, PO_RELEASES_ARCHIVE_ALL), allowing report developers to reproduce the content of a purchase order or release header as it existed at the time of printing or revision. The view is owned by APPS and is generally treated as a read-only reporting object.
The view exposes supplier, site, buyer, currency, shipping, billing, and print-control attributes in a single flattened structure. For Oracle Purchasing's standard change-order and PO print programs, this view is the common source of the header-level data that feeds a report layout. Because it references archived rows, it supports historical reconstruction of PO data for audit and reprint purposes.
Underlying Base Objects
The documented base objects include:
- PO_HEADERS (synonym) — the primary source of current header attributes such as segment1, revision_num, print_count, and dates.
- PO_HEADERS_ARCHIVE, PO_HEADERS_ARCHIVE_ALL — archived header snapshots used for historical reprints.
- PO_RELEASES_ARCHIVE, PO_RELEASES_ARCHIVE_ALL — archived release header data.
- PO_VENDORS, PO_VENDOR_SITES, PO_VENDOR_SITES_ALL — supplier and supplier-site address details.
- AP_SUPPLIER_CONTACTS, AP_TERMS — supplier contact and payment-term information.
- HR_EMPLOYEES, HR_PERSON_NAME, HR_GENERAL, HR_SECURITY — buyer (agent) name resolution and access control.
- FND_CURRENCIES_VL, FND_GLOBAL, FND_PROFILE — currency name/code and session context (org, user).
- PO_LOOKUP_CODES, FND_TERRITORIES_TL — lookup display values and country short names.
- PO_COMMUNICATION_PVT — package that returns formatted ship-to and bill-to address components.
The view therefore sits atop the purchasing header model, the HR employee model for buyer names, the supplier model for vendor details, and the FND layer for currency and territory data.
Key Columns
- SEGMENT1, REVISION_NUM, TYPE_LOOKUP_CODE — PO number, revision, and document type.
- PRINT_COUNT, PRINTED_DATE, REVISED_DATE, CREATION_DATE, START_DATE, END_DATE — print and validity tracking, essential for change-order reporting.
- AGENT_ID, FIRST_NAME, LAST_NAME — buyer identification.
- VENDOR_NAME, VENDOR_NUM, VENDOR_SITE address columns (ADDRESS_LINE1–3, CITY, ZIP, VENDOR_STATE, VENDOR_PHONE) — supplier and site details.
- SHIP_TO_LOCATION_ID, SHIP_ADDRESS_LINE1–3, SHIP_CITY, SHIP_STATE_PROVINCE, SHIP_POSTAL_CODE, SHIP_COUNTRY — ship-to address resolved through PO_COMMUNICATION_PVT.
- BILL_TO_LOCATION_ID, BILL_ADDRESS_LINE1–3, BILL_CITY, BILL_STATE_PROVINCE, BILL_POSTAL_CODE — bill-to address components.
- AMOUNT_AGREED, CURRENCY_CODE, NAME, RATE — blanket/agreement amount and currency details.
- APPROVED_FLAG, CANCEL_FLAG, CONFIRMING_ORDER_FLAG, ACCEPTANCE_REQUIRED_FLAG, ACCEPTANCE_DUE_DATE — status and control flags.
- APPROVED_FLAG, CANCEL_FLAG, CONFIRMING_ORDER_FLAG — decoded flags that drive report formatting decisions.
The column most relevant to the search term "ship_state_province" is SHIP_STATE_PROVINCE, which is populated via PO_COMMUNICATION_PVT.GETSTATEORPROVINCE, alongside the analogous BILL_STATE_PROVINCE.
Common Use Cases and Queries
Typical uses include change-order printing, PO reprint reports, audit extracts of PO header revisions, and supplier/address verification. A simple query to retrieve the ship state/province for a given PO is:
SELECT segment1, revision_num, ship_state_province, ship_city, ship_postal_code
FROM apps.po_headers_change_print
WHERE segment1 = :p_po_number;
For change-order reporting, filtering on print and revision timestamps isolates documents requiring reissue:
SELECT segment1, revision_num, print_count, printed_date, revised_date
FROM apps.po_headers_change_print
WHERE revised_date > :p_from_date
ORDER BY segment1, revision_num;
Because the view references HR_SECURITY and FND_GLOBAL, queries executed from within EBS respect the current organization and security context. When running outside the EBS application, developers should still restrict results by operating unit and agent to avoid exposing data across organizations.
-
VIEW: APPS.PO_HEADERS_CHANGE_PRINT
12.2.2
-
View: PO_HEADERS_CHANGE_PRINT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_CHANGE_PRINT, object_name:PO_HEADERS_CHANGE_PRINT, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_HEADERS_CHANGE_PRINT ,
-
VIEW: APPS.PO_LINE_LOCATIONS_CHANGE_PRINT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINE_LOCATIONS_CHANGE_PRINT, object_name:PO_LINE_LOCATIONS_CHANGE_PRINT, status:VALID,
-
View: PO_HEADERS_CHANGE_PRINT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_CHANGE_PRINT, object_name:PO_HEADERS_CHANGE_PRINT, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_HEADERS_CHANGE_PRINT ,
-
VIEW: APPS.PO_LINE_LOCATIONS_CHANGE_PRINT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINE_LOCATIONS_CHANGE_PRINT, object_name:PO_LINE_LOCATIONS_CHANGE_PRINT, status:VALID,
-
VIEW: APPS.PO_RFQ_LINE_LOCATIONS_PRINT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_RFQ_LINE_LOCATIONS_PRINT, object_name:PO_RFQ_LINE_LOCATIONS_PRINT, status:VALID,
-
View: PO_RFQ_LINE_LOCATIONS_PRINT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_RFQ_LINE_LOCATIONS_PRINT, object_name:PO_RFQ_LINE_LOCATIONS_PRINT, status:VALID, product: PO - Purchasing , description: Print view of RFQ line locations , implementation_dba_data: APPS.PO_RFQ_LINE_LOCATIONS_PRINT ,
-
VIEW: APPS.PO_HEADERS_CHANGE_PRINT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_CHANGE_PRINT, object_name:PO_HEADERS_CHANGE_PRINT, status:VALID,
-
VIEW: APPS.PO_HEADERS_CHANGE_PRINT
12.1.1
-
VIEW: APPS.PO_RFQ_LINE_LOCATIONS_PRINT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_RFQ_LINE_LOCATIONS_PRINT, object_name:PO_RFQ_LINE_LOCATIONS_PRINT, status:VALID,
-
VIEW: APPS.PO_HEADERS_CHANGE_PRINT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_CHANGE_PRINT, object_name:PO_HEADERS_CHANGE_PRINT, status:VALID,
-
View: PO_RFQ_LINE_LOCATIONS_PRINT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_RFQ_LINE_LOCATIONS_PRINT, object_name:PO_RFQ_LINE_LOCATIONS_PRINT, status:VALID, product: PO - Purchasing , description: Print view of RFQ line locations , implementation_dba_data: APPS.PO_RFQ_LINE_LOCATIONS_PRINT ,
-
VIEW: APPS.PO_RFQ_HEADERS_PRINT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_RFQ_HEADERS_PRINT, object_name:PO_RFQ_HEADERS_PRINT, status:VALID,
-
View: PO_LINE_LOCATIONS_CHANGE_PRINT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINE_LOCATIONS_CHANGE_PRINT, object_name:PO_LINE_LOCATIONS_CHANGE_PRINT, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_LINE_LOCATIONS_CHANGE_PRINT ,
-
VIEW: APPS.PO_RFQ_HEADERS_PRINT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_RFQ_HEADERS_PRINT, object_name:PO_RFQ_HEADERS_PRINT, status:VALID,
-
View: PO_RFQ_HEADERS_PRINT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_RFQ_HEADERS_PRINT, object_name:PO_RFQ_HEADERS_PRINT, status:VALID, product: PO - Purchasing , description: Print view of RFQ headers , implementation_dba_data: APPS.PO_RFQ_HEADERS_PRINT ,
-
View: PO_RFQ_HEADERS_PRINT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_RFQ_HEADERS_PRINT, object_name:PO_RFQ_HEADERS_PRINT, status:VALID, product: PO - Purchasing , description: Print view of RFQ headers , implementation_dba_data: APPS.PO_RFQ_HEADERS_PRINT ,
-
View: PO_LINE_LOCATIONS_CHANGE_PRINT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINE_LOCATIONS_CHANGE_PRINT, object_name:PO_LINE_LOCATIONS_CHANGE_PRINT, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_LINE_LOCATIONS_CHANGE_PRINT ,
-
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 ,