Search Results conversion_rate_date
Overview
POS_HEADERS_V is an APPS-owned view in the Oracle E-Business Suite (EBS) Release 12.1.1 and 12.2.2, defined within the iSupplier Portal (POS) product family. The view is used to select header-level information for Advance Shipment Notices (ASNs) created through the iSupplier Portal and related receiving flows. In practice, it provides a consolidated, read-oriented projection of shipment header data that bridges supplier-entered ASN content with the Receiving Open Interface (RCV) structures and the underlying purchasing and payables reference data.
Because it draws from interface and reference objects rather than a single transactional table, POS_HEADERS_V functions as a reporting and integration convenience view. It exposes shipment header attributes alongside vendor details, shipping locations, payment terms, currency, freight, weight, hazard, and invoicing information, thereby allowing downstream pages, reports, and interfaces to retrieve ASN header data without repeatedly writing multi-table joins. The presence of AP_TERMS_VL among its referenced base objects reflects the documented user search context of "ap_terms_vl": payment terms names surfaced in the view are sourced from the payables terms view.
Underlying Base Objects
The documented base objects underlying POS_HEADERS_V are:
- RCV_HEADERS_INTERFACE (synonym) — primary source of ASN header attributes.
- RCV_TRANSACTIONS_INTERFACE (synonym) — joined on HEADER_INTERFACE_ID to link header to transaction interface lines.
- RCV_SHIPMENT_HEADERS (synonym) — shipment header reference data used in the union branch.
- HR_LOCATIONS_ALL_TL (synonym) — location code lookup, joined with the LANGUAGE operand via USERENV('LANG').
- HZ_LOCATIONS (synonym) — address fallback for location code derivation.
- PO_VENDORS (view) and PO_VENDOR_SITES_ALL (view) — supplier and supplier site attributes.
- AP_TERMS_VL (view) — payment terms name lookup.
- FND_GLOBAL (package) — environment context such as language and organizational context.
The view text shows a UNION of branches. The first branch joins RCV_HEADERS_INTERFACE to RCV_TRANSACTIONS_INTERFACE, with outer joins to HR_LOCATIONS_ALL_TL and HZ_LOCATIONS, and computes LOCATION_CODE using location code or a concatenation of address1 and city. The second branch sources equivalent header data from the shipment header structures and derives PAYMENT_TERMS_NAME from the terms view (AP.NAME), confirming the AP_TERMS_VL dependency. Both branches align the same column list so the union is consistent.
Key Columns
- SHIPMENT_NUM, SHIPPED_DATE, EXPECTED_RECEIPT_DATE — core ASN shipment identifiers and dates.
- FREIGHT_TERMS, FREIGHT_CARRIER_CODE, FREIGHT_BILL_NUMBER, FREIGHT_AMOUNT — freight and carrier details.
- BILL_OF_LADING, WAYBILL_AIRBILL_NUM, NUM_OF_CONTAINERS, PACKING_SLIP — transport documentation.
- INVOICE_NUM, INVOICE_DATE, TOTAL_INVOICE_AMOUNT, INVOICE_STATUS_CODE — supplier invoice header data.
- PAYMENT_TERMS_NAME — payment terms description, sourced via AP_TERMS_VL.
- VENDOR_NAME, VENDOR_ID, VENDOR_NUM, VENDOR_SITE_CODE, VENDOR_SITE_ID — supplier and site identification.
- LOCATION_CODE, SHIP_TO_ORGANIZATION_CODE, SHIP_TO_ORGANIZATION_ID — ship-to location and organization.
- TAR_WEIGHT, NET_WEIGHT, GROSS_WEIGHT and their UOM codes — weight metrics.
- HAZARD_CLASS, HAZARD_CODE, HAZARD_DESCRIPTION, PACKAGING_CODE, SPECIAL_HANDLING_CODE — handling and compliance attributes.
- CURRENCY_CODE, CONVERSION_RATE, CONVERSION_RATE_DATE, CONVERSION_RATE_TYPE — currency context.
- HEADER_ID — exposed as RHI.HEADER_INTERFACE_ID, the header interface key.
- ASN_TYPE, REMIT_TO_SITE_ID, USGGL_TRANSACTION_CODE — classification and remit attributes.
Common Use Cases and Queries
Typical scenarios include supplier ASN inquiry, receiving interface validation, and reporting on inbound shipments prior to receipt creation. A common query retrieves shipment header and vendor context for a given supplier:
- SELECT shipment_num, shipped_date, expected_receipt_date, vendor_name, vendor_site_code, payment_terms_name, currency_code FROM apps.pos_headers_v WHERE vendor_id = :p_vendor_id;
- SELECT shipment_num, invoice_num, total_invoice_amount, invoice_status_code FROM apps.pos_headers_v WHERE invoice_status_code IS NOT NULL ORDER BY shipped_date DESC;
- SELECT shipment_num, location_code, ship_to_organization_code, gross_weight, gross_weight_uom_code FROM apps.pos_headers_v WHERE header_id = :p_header_id;
Because the view depends on interface tables and a union of branches, queries should be filtered by shipment number, header interface ID, or vendor to avoid scanning unnecessary rows. The view is read-only; it does not support DML. When reconciling payment terms in ASN output, note that PAYMENT_TERMS_NAME originates from AP_TERMS_VL, so any change to payables terms definitions will be reflected in subsequent query results.
-
View: POS_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_HEADERS_V, object_name:POS_HEADERS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_HEADERS_V ,
-
View: POS_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_HEADERS_V POS.POS_HEADERS_V, object_name:POS_HEADERS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_HEADERS_V ,