Search Results ship_to_location
Overview
ICX_RECEIPT_HEADERS_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the ICX (Oracle iProcurement) product. Its documented description is "Receipt Headers View," and it presents receipt header information originating from the receiving tables in Oracle Inventory and Purchasing, joined to supplier, organization, location, and employee attributes needed for presentation and downstream reporting. The view is defined over RCV_SHIPMENT_HEADERS as the driving source and enhances each receipt with human-readable supplier and location descriptions.
In EBS 12.1.1 and 12.2.2 the object carries a status of VALID and is exposed through the APPS schema for use by iProcurement pages, concurrent reports, and customer-defined queries. Because it flattens several foreign-key relationships into descriptive columns, it is commonly used as a convenience layer for reporting on goods receipts without writing the underlying join logic against RCV_SHIPMENT_HEADERS, PO_VENDORS, PO_VENDOR_SITES, ORG_ORGANIZATION_DEFINITIONS, HR_LOCATIONS, and HR_EMPLOYEES.
Underlying Base Objects
The ETRM metadata for 12.2.2 lists the following referenced base objects: FND_GLOBAL (package), FND_PROFILE (package), HR_EMPLOYEES (view), HR_GENERAL (package), HR_LOCATIONS (view), HR_PERSON_NAME (package), HR_SECURITY (package), ORG_ORGANIZATION_DEFINITIONS (view), PO_VENDORS (view), PO_VENDOR_SITES (view), and RCV_SHIPMENT_HEADERS (synonym). The documented view text shows explicit outer joins from RCV_SHIPMENT_HEADERS to PO_VENDORS, PO_VENDOR_SITES, HR_LOCATIONS, HR_EMPLOYEES, and ORG_ORGANIZATION_DEFINITIONS, with the receipt number predicate RSH.RECEIPT_NUM IS NOT NULL. The FND and HR packages are referenced indirectly through the HR security and profile mechanisms that govern rows visible to the querying user.
Key Columns
- RECEIPT_NUM, RECEIPT_DATE, SHIPMENT_NUM, SHIPMENT_HEADER_ID — the receipt identity, its creation date, and the shipment line reference.
- SOURCE_TYPE — maps RSH.RECEIPT_SOURCE_CODE, with documented values for Internal Order, Inventory, and Vendor receipts.
- SUPPLIER_ID / SUPPLIER and VENDOR_ID / VENDOR — for vendor receipts the supplier is taken from the vendor; for internal and inventory receipts it resolves to the organization. SUPPLIER_URL exposes POV.ATTRIBUTE14.
- SUPPLIER_SITE_ID / SUPPLIER_SITE — from the vendor site foreign key.
- ORGANIZATION_ID and SOURCE_ORG — the source organization identifier and its name.
- SHIP_TO_LOCATION_ID and SHIP_TO_LOCATION — the ship-to location identifier and the corresponding LOCATION_CODE from HR_LOCATIONS. The search term "ship_to_location" maps directly to these two columns.
- BILL_OF_LADING, PACKING_SLIP, SHIPPED_DATE, FREIGHT_CARRIER_CODE, EXPECTED_RECEIPT_DATE — shipment and logistics attributes.
- EMPLOYEE_ID / RECEIVER — the receiving employee and full name.
- NUM_OF_CONTAINERS, WAYBILL_AIRBILL_NUM, COMMENTS, USSGL_TRANSACTION_CODE, GOVERNMENT_CONTEXT — supplementary receipt details.
Common Use Cases and Queries
Typical uses include receipt registers by ship-to location, supplier receipt analysis, and integration extracts that require supplier and location descriptions rather than raw identifiers. A basic query filtering on ship-to location follows:
SELECT receipt_num, receipt_date, supplier, ship_to_location, source_org FROM apps.icx_receipt_headers_v WHERE ship_to_location = :p_location_code;SELECT supplier, COUNT(*) FROM apps.icx_receipt_headers_v WHERE receipt_date >= :p_from_date GROUP BY supplier;SELECT receipt_num, vendor, supplier_site, packing_slip, expected_receipt_date FROM apps.icx_receipt_headers_v WHERE source_type = 'VENDOR' AND expected_receipt_date IS NOT NULL;
Because the view depends on HR security and profile packages, results may be restricted by the responsibilities and security profiles of the querying user. Report authors should therefore test queries under the intended responsibility and account for the outer joins, which return null descriptive values when a ship-to location, employee, or vendor record is not resolvable.
-
View: ICX_RECEIPT_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RECEIPT_HEADERS_V, object_name:ICX_RECEIPT_HEADERS_V, status:VALID, product: ICX - Oracle iProcurement , description: Receipt Headers View , implementation_dba_data: APPS.ICX_RECEIPT_HEADERS_V ,
-
View: ICX_RECEIPT_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RECEIPT_HEADERS_V, object_name:ICX_RECEIPT_HEADERS_V, status:VALID, product: ICX - Oracle iProcurement , description: Receipt Headers View , implementation_dba_data: APPS.ICX_RECEIPT_HEADERS_V ,
-
View: ICX_EDM_SALES_ORDER_V
12.2.2
product: ICX - Oracle iProcurement , description: Project Related Sales Order View , implementation_dba_data: Not implemented in this database ,
-
View: ICX_EDM_SALES_ORDER_V
12.1.1
product: ICX - Oracle iProcurement , description: Project Related Sales Order View , implementation_dba_data: Not implemented in this database ,
-
View: ICX_RCV_EARLY_LATE_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RCV_EARLY_LATE_RECEIPTS_V, object_name:ICX_RCV_EARLY_LATE_RECEIPTS_V, status:VALID, product: ICX - Oracle iProcurement , description: Supplier Performance View based on On-Time Delivery Performance , implementation_dba_data: APPS.ICX_RCV_EARLY_LATE_RECEIPTS_V ,
-
View: ICX_RCV_RETURNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RCV_RETURNS_V, object_name:ICX_RCV_RETURNS_V, status:VALID, product: ICX - Oracle iProcurement , description: Returned Item Receipts View , implementation_dba_data: APPS.ICX_RCV_RETURNS_V ,
-
View: ICX_RCV_EARLY_LATE_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RCV_EARLY_LATE_RECEIPTS_V, object_name:ICX_RCV_EARLY_LATE_RECEIPTS_V, status:VALID, product: ICX - Oracle iProcurement , description: Supplier Performance View based on On-Time Delivery Performance , implementation_dba_data: APPS.ICX_RCV_EARLY_LATE_RECEIPTS_V ,
-
View: ICX_RCV_RETURNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RCV_RETURNS_V, object_name:ICX_RCV_RETURNS_V, status:VALID, product: ICX - Oracle iProcurement , description: Returned Item Receipts View , implementation_dba_data: APPS.ICX_RCV_RETURNS_V ,
-
View: ICX_RCV_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RCV_TRANSACTIONS_V, object_name:ICX_RCV_TRANSACTIONS_V, status:VALID, product: ICX - Oracle iProcurement , description: Receipt Lines View , implementation_dba_data: APPS.ICX_RCV_TRANSACTIONS_V ,
-
Lookup Type: ICX_CAT_UPLOAD_ERR_TOKENS
12.1.1
product: ICX - Oracle iProcurement , meaning: Tokens for displaying attributes in view upload errors page , description: Tokens for displaying attributes in view upload errors page ,
-
View: ICX_RCV_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RCV_TRANSACTIONS_V, object_name:ICX_RCV_TRANSACTIONS_V, status:VALID, product: ICX - Oracle iProcurement , description: Receipt Lines View , implementation_dba_data: APPS.ICX_RCV_TRANSACTIONS_V ,
-
Lookup Type: ICX_CAT_UPLOAD_ERR_TOKENS
12.2.2
product: ICX - Oracle iProcurement , meaning: Tokens for displaying attributes in view upload errors page , description: Tokens for displaying attributes in view upload errors page ,
-
View: ICX_SO_HEADERS_V
12.2.2
product: ICX - Oracle iProcurement , description: Order Entry Header View , implementation_dba_data: Not implemented in this database ,
-
View: ICX_SO_HEADERS_V
12.1.1
product: ICX - Oracle iProcurement , description: Order Entry Header View , implementation_dba_data: Not implemented in this database ,
-
View: ICX_EDM_PO_BLANKET_REL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_PO_BLANKET_REL_V, object_name:ICX_EDM_PO_BLANKET_REL_V, status:VALID, product: ICX - Oracle iProcurement , description: Project Related PO Releases View , implementation_dba_data: APPS.ICX_EDM_PO_BLANKET_REL_V ,
-
View: ICX_EDM_PO_BLANKET_REL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_PO_BLANKET_REL_V, object_name:ICX_EDM_PO_BLANKET_REL_V, status:VALID, product: ICX - Oracle iProcurement , description: Project Related PO Releases View , implementation_dba_data: APPS.ICX_EDM_PO_BLANKET_REL_V ,
-
Lookup Type: ICX_CAT_TXT_TOKENS
12.1.1
product: ICX - Oracle iProcurement , meaning: Catalog loader text file tokens , description: Catalog loader text file tokens ,
-
Lookup Type: ICX_CAT_TXT_TOKENS
12.2.2
product: ICX - Oracle iProcurement , meaning: Catalog loader text file tokens , description: Catalog loader text file tokens ,
-
View: ICX_EDM_PURCHASE_ORDER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_PURCHASE_ORDER_V, object_name:ICX_EDM_PURCHASE_ORDER_V, status:VALID, product: ICX - Oracle iProcurement , description: Project Related Purchase Orders View , implementation_dba_data: APPS.ICX_EDM_PURCHASE_ORDER_V ,
-
View: ICX_RCV_REJECTED_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RCV_REJECTED_ITEMS_V, object_name:ICX_RCV_REJECTED_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Supplier Performance View based on Rejected Items , implementation_dba_data: APPS.ICX_RCV_REJECTED_ITEMS_V ,
-
View: ICX_EDM_PURCHASE_ORDER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_PURCHASE_ORDER_V, object_name:ICX_EDM_PURCHASE_ORDER_V, status:VALID, product: ICX - Oracle iProcurement , description: Project Related Purchase Orders View , implementation_dba_data: APPS.ICX_EDM_PURCHASE_ORDER_V ,
-
View: ICX_RCV_REJECTED_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RCV_REJECTED_ITEMS_V, object_name:ICX_RCV_REJECTED_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Supplier Performance View based on Rejected Items , implementation_dba_data: APPS.ICX_RCV_REJECTED_ITEMS_V ,
-
View: ICX_RCV_ACCEPTED_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RCV_ACCEPTED_ITEMS_V, object_name:ICX_RCV_ACCEPTED_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: APPS.ICX_RCV_ACCEPTED_ITEMS_V ,
-
View: ICX_RCV_ACCEPTED_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RCV_ACCEPTED_ITEMS_V, object_name:ICX_RCV_ACCEPTED_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: APPS.ICX_RCV_ACCEPTED_ITEMS_V ,
-
View: POR_RCV_SHIP_DISP_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_SHIP_DISP_LINES_V, object_name:POR_RCV_SHIP_DISP_LINES_V, status:VALID, product: ICX - Oracle iProcurement , description: The view queries the information which is used to display the shipment line level information on the Shipment details page. , implementation_dba_data: APPS.POR_RCV_SHIP_DISP_LINES_V ,
-
View: POR_RCV_SHIP_DISP_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_SHIP_DISP_LINES_V, object_name:POR_RCV_SHIP_DISP_LINES_V, status:VALID, product: ICX - Oracle iProcurement , description: The view queries the information which is used to display the shipment line level information on the Shipment details page. , implementation_dba_data: APPS.POR_RCV_SHIP_DISP_LINES_V ,
-
View: POS_ASN_REVIEW_SHIPMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POS_ASN_REVIEW_SHIPMENTS_V, object_name:POS_ASN_REVIEW_SHIPMENTS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POS_ASN_REVIEW_SHIPMENTS_V ,
-
View: POS_ASN_REVIEW_SHIPMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POS_ASN_REVIEW_SHIPMENTS_V, object_name:POS_ASN_REVIEW_SHIPMENTS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POS_ASN_REVIEW_SHIPMENTS_V ,
-
View: POR_RECEIVE_ORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RECEIVE_ORDERS_V, object_name:POR_RECEIVE_ORDERS_V, status:VALID, product: ICX - Oracle iProcurement , description: Items available for receiving , implementation_dba_data: APPS.POR_RECEIVE_ORDERS_V ,
-
View: POR_RECEIVE_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RECEIVE_ORDERS_V, object_name:POR_RECEIVE_ORDERS_V, status:VALID, product: ICX - Oracle iProcurement , description: Items available for receiving , implementation_dba_data: APPS.POR_RECEIVE_ORDERS_V ,
-
View: POS_ASN_SHIPMENT_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POS_ASN_SHIPMENT_DETAILS_V, object_name:POS_ASN_SHIPMENT_DETAILS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POS_ASN_SHIPMENT_DETAILS_V ,
-
View: POS_ASN_SHIPMENT_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POS_ASN_SHIPMENT_DETAILS_V, object_name:POS_ASN_SHIPMENT_DETAILS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POS_ASN_SHIPMENT_DETAILS_V ,
-
View: POS_ASN_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POS_ASN_HEADERS_V, object_name:POS_ASN_HEADERS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POS_ASN_HEADERS_V ,
-
View: POS_ASN_REVIEW_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POS_ASN_REVIEW_HEADERS_V, object_name:POS_ASN_REVIEW_HEADERS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POS_ASN_REVIEW_HEADERS_V ,
-
View: POS_ASN_REVIEW_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POS_ASN_REVIEW_HEADERS_V, object_name:POS_ASN_REVIEW_HEADERS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POS_ASN_REVIEW_HEADERS_V ,
-
View: POS_ASN_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POS_ASN_HEADERS_V, object_name:POS_ASN_HEADERS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POS_ASN_HEADERS_V ,
-
View: ICX_PO_RFQ_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_RFQ_HEADERS_V, object_name:ICX_PO_RFQ_HEADERS_V, status:VALID, product: ICX - Oracle iProcurement , description: Request for Quotations Header View , implementation_dba_data: APPS.ICX_PO_RFQ_HEADERS_V ,
-
View: ICX_PO_RFQ_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_RFQ_HEADERS_V, object_name:ICX_PO_RFQ_HEADERS_V, status:VALID, product: ICX - Oracle iProcurement , description: Request for Quotations Header View , implementation_dba_data: APPS.ICX_PO_RFQ_HEADERS_V ,
-
View: ICX_PO_SUPPLIER_AGREEMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_SUPPLIER_AGREEMENTS_V, object_name:ICX_PO_SUPPLIER_AGREEMENTS_V, status:VALID, product: ICX - Oracle iProcurement , description: Supplier Agreements View , implementation_dba_data: APPS.ICX_PO_SUPPLIER_AGREEMENTS_V ,
-
View: ICX_PO_SUPPLIER_AGREEMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_SUPPLIER_AGREEMENTS_V, object_name:ICX_PO_SUPPLIER_AGREEMENTS_V, status:VALID, product: ICX - Oracle iProcurement , description: Supplier Agreements View , implementation_dba_data: APPS.ICX_PO_SUPPLIER_AGREEMENTS_V ,
-
View: ICX_PO_LATE_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_LATE_RECEIPTS_V, object_name:ICX_PO_LATE_RECEIPTS_V, status:VALID, product: ICX - Oracle iProcurement , description: Overdue Receipts View , implementation_dba_data: APPS.ICX_PO_LATE_RECEIPTS_V ,
-
View: ICX_PO_LATE_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_LATE_RECEIPTS_V, object_name:ICX_PO_LATE_RECEIPTS_V, status:VALID, product: ICX - Oracle iProcurement , description: Overdue Receipts View , implementation_dba_data: APPS.ICX_PO_LATE_RECEIPTS_V ,
-
View: ICX_PO_LINES_INQ_V
12.1.1
product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: ICX_PO_LINES_INQ_V
12.2.2
product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: ICX_PO_LINES_ARCHIVE_V
12.2.2
product: ICX - Oracle iProcurement , description: Latest Purchase Order View , implementation_dba_data: Not implemented in this database ,
-
View: ICX_PO_LINES_ARCHIVE_V
12.1.1
product: ICX - Oracle iProcurement , description: Latest Purchase Order View , implementation_dba_data: Not implemented in this database ,
-
View: ICX_PO_HEADERS_ARCHIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_HEADERS_ARCHIVE_V, object_name:ICX_PO_HEADERS_ARCHIVE_V, status:VALID, product: ICX - Oracle iProcurement , description: Archived Purchase Orders Header View , implementation_dba_data: APPS.ICX_PO_HEADERS_ARCHIVE_V ,
-
View: ICX_PO_HEADERS_ARCHIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_HEADERS_ARCHIVE_V, object_name:ICX_PO_HEADERS_ARCHIVE_V, status:VALID, product: ICX - Oracle iProcurement , description: Archived Purchase Orders Header View , implementation_dba_data: APPS.ICX_PO_HEADERS_ARCHIVE_V ,
-
View: ICX_PO_HDR_ARCHIVE_OPEN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_HDR_ARCHIVE_OPEN_V, object_name:ICX_PO_HDR_ARCHIVE_OPEN_V, status:VALID, product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: APPS.ICX_PO_HDR_ARCHIVE_OPEN_V ,
-
View: ICX_PO_HDR_ARCHIVE_OPEN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_HDR_ARCHIVE_OPEN_V, object_name:ICX_PO_HDR_ARCHIVE_OPEN_V, status:VALID, product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: APPS.ICX_PO_HDR_ARCHIVE_OPEN_V ,