Search Results rcv_shipment_headers_v
Overview
RCV_SHIPMENT_HEADERS_V is an APPS-owned view in Oracle E-Business Suite that exposes the shipment header records used by the Receiving module of the Purchasing (PO) product family. It is a straightforward projection of the RCV_SHIPMENT_HEADERS base table, listed in the ETRM 12.2.2 metadata with a status of VALID and a description of "10SC ONLY - Retrofitted." The "10SC" reference indicates the view was introduced as part of the Oracle 10SC (Supply Chain) retrofit stream and is retained for backward compatibility in 12.1.1 and 12.2.2. A shipment header represents the top-level container of a receiving transaction: it carries the receipt number, shipment number, vendor and ship-to information, and the shipping details associated with an inbound delivery. Because the view preserves the column names of the underlying table without transformation, it serves as a stable, read-oriented access point for reports, interfaces, and custom extensions that need shipment header data without binding directly to the base table.
Underlying Base Objects
The view is defined over RCV_SHIPMENT_HEADERS, which the metadata records as a referenced base object via a synonym. The defining query is a simple SELECT of all columns from that table, aliased as RSH. No joins, filters, or computed expressions are applied, so the view is fully row-for-row equivalent to the base table. All DML against the base table is reflected immediately in the view. In 12.1.1 and 12.2.2, the primary Receiving flow writes through the RCV_SHIPMENT_HEADERS table directly; this view is therefore a reporting and integration convenience rather than a functional interface of the receiving API. The synonym reference in the metadata confirms that the view resolves through the standard APPS synonym layer.
Key Columns
The view exposes the complete column set of the shipment header. Notable columns include:
SHIPMENT_HEADER_ID— primary identifier for the shipment header record.RECEIPT_NUMandSHIPMENT_NUM— the human-readable receipt number and the internal shipment number.RECEIPT_SOURCE_CODE— indicates whether the receipt originates from a vendor, an internal requisition, or another source.VENDOR_ID,VENDOR_SITE_ID,CUSTOMER_ID,CUSTOMER_SITE_ID— trading partner references for supplier and customer shipments.ORGANIZATION_IDandSHIP_TO_LOCATION_ID— the receiving inventory organization and destination location.SHIPPED_DATE,EXPECTED_RECEIPT_DATE,BILL_OF_LADING,PACKING_SLIP,WAYBILL_AIRBILL_NUM,FREIGHT_CARRIER_CODE,NUM_OF_CONTAINERS— logistics and in-transit details.EMPLOYEE_ID— the employee associated with the shipment.ATTRIBUTE_CATEGORYandATTRIBUTE1–ATTRIBUTE15— the standard DFF (Descriptive Flexfield) columns available for customer extensions.USSGL_TRANSACTION_CODEandGOVERNMENT_CONTEXT— public-sector accounting fields used in Federal deployments.REQUEST_ID,PROGRAM_APPLICATION_ID,PROGRAM_ID,PROGRAM_UPDATE_DATE— concurrent program audit context.CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN— the standard "Who" audit columns.
Common Use Cases and Queries
This view is typically used for shipment-level reporting, reconciliation between expected and actual receipts, and data extracts feeding downstream systems such as WMS or analytics. A representative query lists receipt headers for an organization within a date range:
SELECT rsh.receipt_num, rsh.shipment_num, rsh.receipt_source_code, rsh.vendor_id, rsh.shipped_date, rsh.expected_receipt_date FROM rcv_shipment_headers_v rsh WHERE rsh.organization_id = :org_id AND rsh.creation_date >= :from_date;
A second common pattern joins the view to shipment lines to derive header-to-line detail:
SELECT rsh.receipt_num, rsl.line_num, rsl.item_id, rsl.quantity_received FROM rcv_shipment_headers_v rsh, rcv_shipment_lines rsl WHERE rsh.shipment_header_id = rsl.shipment_header_id AND rsh.receipt_num = :receipt_num;
Because the view is read-only in intent (no WITH CHECK OPTION or INSTEAD OF trigger), custom code should not attempt DML through it; inserts and updates must target RCV_SHIPMENT_HEADERS or the supported Receiving APIs. The view remains valid and available in both 12.1.1 and 12.2.2, and its simplicity makes it a low-risk object for custom reporting extensions.
-
View: RCV_SHIPMENT_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_SHIPMENT_HEADERS_V, object_name:RCV_SHIPMENT_HEADERS_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_SHIPMENT_HEADERS_V ,
-
View: RCV_SHIPMENT_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_SHIPMENT_HEADERS_V, object_name:RCV_SHIPMENT_HEADERS_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_SHIPMENT_HEADERS_V ,
-
VIEW: APPS.QA_ERES_RCV_TRANS_INTERFACE_V
12.1.1
-
VIEW: APPS.QA_ERES_RCV_TRANS_INTERFACE_V
12.2.2
-
View: QA_ERES_RCV_TRANS_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_ERES_RCV_TRANS_INTERFACE_V, object_name:QA_ERES_RCV_TRANS_INTERFACE_V, status:VALID, product: QA - Quality , description: electronic record view for receiving transaction integration , implementation_dba_data: APPS.QA_ERES_RCV_TRANS_INTERFACE_V ,
-
View: QA_ERES_RCV_TRANS_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_ERES_RCV_TRANS_INTERFACE_V, object_name:QA_ERES_RCV_TRANS_INTERFACE_V, status:VALID, product: QA - Quality , description: electronic record view for receiving transaction integration , implementation_dba_data: APPS.QA_ERES_RCV_TRANS_INTERFACE_V ,
-
VIEW: APPS.QA_ERES_RCV_TRANS_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_ERES_RCV_TRANS_INTERFACE_V, object_name:QA_ERES_RCV_TRANS_INTERFACE_V, status:VALID,
-
VIEW: APPS.RCV_SHIPMENT_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_SHIPMENT_HEADERS_V, object_name:RCV_SHIPMENT_HEADERS_V, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.RCV_SHIPMENT_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_SHIPMENT_HEADERS_V, object_name:RCV_SHIPMENT_HEADERS_V, status:VALID,
-
VIEW: APPS.QA_ERES_RCV_TRANS_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_ERES_RCV_TRANS_INTERFACE_V, object_name:QA_ERES_RCV_TRANS_INTERFACE_V, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.RCV_SHIPMENT_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RCV_SHIPMENT_HEADERS, status:VALID,
-
SYNONYM: APPS.RCV_SHIPMENT_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RCV_SHIPMENT_HEADERS, status:VALID,
-
eTRM - QA Tables and Views
12.1.1
description: Define information on applicability of a collection plan for a Quality Collection transaction ,
-
eTRM - QA Tables and Views
12.2.2
description: Define information on applicability of a collection plan for a Quality Collection transaction ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - PO Tables and Views
12.2.2
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - QA Tables and Views
12.1.1
description: Define information on applicability of a collection plan for a Quality Collection transaction ,
-
eTRM - QA Tables and Views
12.2.2
description: Define information on applicability of a collection plan for a Quality Collection transaction ,
-
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 ,