Search Results ship_to_location_code
Overview
POS_ASN_RESULT_V is an Oracle E-Business Suite (EBS) database view owned by the APPS schema and delivered under the ICX – Oracle iProcurement product family. It is a reporting and integration-oriented view that surfaces the working result set of the Advanced Shipment Notice (ASN) search performed within Oracle iProcurement. In EBS 12.1.1 and 12.2.2, iProcurement allows buyers and receiving personnel to locate purchase order shipments eligible for an ASN so that supplier shipment details can be recorded against receipt-bound order lines. The search results are staged, and POS_ASN_RESULT_V exposes that staged set with a denormalized, business-friendly shape.
Because the view carries both identifiers and descriptive attributes — PO number, line number, shipment number, supplier details, ship-to location, item information, and ordered quantity — it serves as a convenient single-row-per-qualifying-shipment source for reporting, extensions, and integration extracts. It is a read-only view and is not intended for direct DML.
Underlying Base Objects
The documented object metadata identifies a single referenced base object: the synonym POS_ASN_SEARCH_RESULT. The view definition is a straight projection from that source:
- SELECT ... FROM POS_ASN_SEARCH_RESULT — all exposed columns are selected directly from the base synonym, with no joins, filters, groupings, or transformations.
In other words, POS_ASN_RESULT_V is a thin presentation layer. The synonym resolves to the underlying APPS storage where iProcurement materializes the ASN search results for a session. The SESSION_ID column is the mechanism that distinguishes one user's or one search's result set from another's; without constraining by session, the view exposes rows from all populated searches.
Key Columns
The columns fall into logical groupings:
- Result-set scoping: SESSION_ID identifies the ASN search session that produced the row. This is the essential correlation key for any consumer of this view.
- Order references: PO_HEADER_ID, PO_NUMBER, PO_RELEASE_ID, PO_LINE_ID, LINE_NUMBER, PO_SHIPMENT_ID, and SHIPMENT_NUMBER. SHIPMENT_NUMBER is the shipment (schedule) number on the purchase order line and is frequently the attribute users search on when reconciling ASN content against PO schedules.
- Ship-to information: SHIP_TO_LOCATION_ID, SHIP_TO_LOCATION_CODE, SHIP_TO_ORGANIZATION_ID, SHIP_TO_ORGANIZATION_CODE, and SHIP_TO_ORGANIZATION_NAME identify where the shipment is destined.
- Supplier information: SUPPLIER_ID, SUPPLIER_NAME, SUPPLIER_SITE_ID, SUPPLIER_SITE_CODE, and the additional SEC_SUPPLIER_ID and SEC_SUPPLIER_SITE_ID columns.
- Item information: ITEM_ID, ITEM_NUMBER, ITEM_REVISION, ITEM_DESCRIPTION, CATEGORY_ID, CATEGORY, and SUPPLIER_ITEM_NUMBER.
- Quantity, UOM, and schedule: QUANTITY_ORDERED, UNIT_OF_MEASURE_CODE, and DUE_DATE.
Common Use Cases and Queries
Typical uses include diagnosing why a shipment does or does not appear in the ASN search result set, validating that expected PO shipments are available for ASN entry, and building custom reports that reconcile ordered quantities against shipment schedules. The following sample returns the shipments staged for a given session, ordered by PO and line:
- SELECT po_number, line_number, shipment_number, supplier_name, item_number, quantity_ordered, unit_of_measure_code, due_date, ship_to_organization_code FROM apps.pos_asn_result_v WHERE session_id = :p_session_id ORDER BY po_number, line_number, shipment_number;
To locate a specific shipment by its number across the staged results:
- SELECT session_id, po_number, line_number, shipment_number, po_shipment_id, ship_to_location_code FROM apps.pos_asn_result_v WHERE shipment_number = :p_shipment_number;
Because no join logic is present in the view, any enrichment — for example resolving closed or cancelled status from PO tables — must be supplied by the calling query joining back to the appropriate purchasing tables on PO_HEADER_ID, PO_LINE_ID, or PO_SHIPMENT_ID.
-
View: POS_ASN_RESULT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POS_ASN_RESULT_V, object_name:POS_ASN_RESULT_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POS_ASN_RESULT_V ,
-
View: POS_ASN_RESULT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POS_ASN_RESULT_V, object_name:POS_ASN_RESULT_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POS_ASN_RESULT_V ,
-
View: POS_ASN_PO_SHIPMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POS_ASN_PO_SHIPMENTS_V, object_name:POS_ASN_PO_SHIPMENTS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POS_ASN_PO_SHIPMENTS_V ,
-
View: ICX_POS_QA_SHIPMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_POS_QA_SHIPMENTS_V, object_name:ICX_POS_QA_SHIPMENTS_V, status:VALID, product: ICX - Oracle iProcurement , description: Quality Self-Service Shipment View , implementation_dba_data: APPS.ICX_POS_QA_SHIPMENTS_V ,
-
View: POS_ASN_PO_SHIPMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POS_ASN_PO_SHIPMENTS_V, object_name:POS_ASN_PO_SHIPMENTS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POS_ASN_PO_SHIPMENTS_V ,
-
View: POS_UPD_DATE_PO_SHIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POS_UPD_DATE_PO_SHIP_V, object_name:POS_UPD_DATE_PO_SHIP_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POS_UPD_DATE_PO_SHIP_V ,
-
View: POS_UPD_DATE_PO_SHIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POS_UPD_DATE_PO_SHIP_V, object_name:POS_UPD_DATE_PO_SHIP_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POS_UPD_DATE_PO_SHIP_V ,
-
View: ICX_PO_RFQ_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_RFQ_LINES_V, object_name:ICX_PO_RFQ_LINES_V, status:VALID, product: ICX - Oracle iProcurement , description: Request for Quotations Details View , implementation_dba_data: APPS.ICX_PO_RFQ_LINES_V ,
-
View: ICX_PO_RFQ_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_RFQ_LINES_V, object_name:ICX_PO_RFQ_LINES_V, status:VALID, product: ICX - Oracle iProcurement , description: Request for Quotations Details View , implementation_dba_data: APPS.ICX_PO_RFQ_LINES_V ,
-
View: ICX_POS_QA_SHIPMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_POS_QA_SHIPMENTS_V, object_name:ICX_POS_QA_SHIPMENTS_V, status:VALID, product: ICX - Oracle iProcurement , description: Quality Self-Service Shipment View , implementation_dba_data: APPS.ICX_POS_QA_SHIPMENTS_V ,