RCV_SHIPMENT_HEADERS
Product: RCVtransactionReceipt and expected-receipt headers — one row per supplier ASN, receipt, in-transit shipment, or RMA return, grouped by receipt source; carries the receipt number, supplier, and expected/shipped dates
The receiving org is SHIP_TO_ORG_ID; an ORGANIZATION_ID column exists but holds the FROM (shipping) org of in-transit shipments — this catalog deliberately does not anchor on it, because filtering it as "the org" inverts inter-org flows. RECEIPT_SOURCE_CODE separates VENDOR / INVENTORY / TRANSFER ORDER / CUSTOMER (RMA) flows; ASN-only headers have a shipment number and no receipt number until goods arrive.
What the badges mean
- master
- Data class: what the table holds — master data, transaction documents, control/configuration, interface/staging, or a documented view.
Header & line
RCV_SHIPMENT_HEADERS is the header for its lines in RCV_SHIPMENT_LINES.
Extract access
The delivered surfaces that reach this table — the BICC extract data store (PVO) for bulk extraction and the OTBI subject areas for real-time queries. There is no SQL path to the SaaS database.
- FscmTopModelAM.ScmExtractAM.RcvBiccExtractAM.ReceivingInboundShipmentHeaderExtractPVOOTBI: Receiving - Receipts Real TimeOTBI: Receiving - Purchase Receipts Real Time
Inbound Shipment Headers data store — keyed on ShipmentHeaderId. Receiving stores live in the SCM extract book, not the Procurement one.
Oracle data-store documentation →
Fields
16 fields · 1 key
| # | Field | Description | Type | Flags |
|---|---|---|---|---|
| 1 | SHIPMENT_HEADER_ID | Surrogate key of the receipt/shipment header | NUMBER | Key |
| 2 | RECEIPT_SOURCE_CODE | Source of the shipment — VENDOR, INVENTORY, TRANSFER ORDER, CUSTOMER (RMA), OUTSOURCER | VARCHAR2 | |
| 3 | RECEIPT_NUM | Receipt number for this header — ASN-only headers have none until goods arrive | VARCHAR2 | |
| 4 | SHIPMENT_NUM | Source-assigned shipment number (ASN, in-transit, or transfer order) | VARCHAR2 | |
| 5 | ASN_TYPE | ASN / ASBN advance notice, or STD plain receipt | VARCHAR2 | |
| 6 | VENDOR_ID | Supplier on the shipment | NUMBER | |
| 7 | VENDOR_SITE_ID | Supplier site | NUMBER | |
| 8 | ORGANIZATION_ID | The FROM (shipping) org of in-transit shipments — NOT the receiving org; deliberately unanchored | NUMBER | |
| 9 | SHIP_TO_ORG_ID | The receiving inventory org where the receipt is created | NUMBER | |
| 10 | SHIP_TO_LOCATION_ID | Receiving location | NUMBER | |
| 11 | CUSTOMER_ID | Customer — RMA (customer-return) receipts only | NUMBER | |
| 12 | EMPLOYEE_ID | Person who created the receiving transaction | NUMBER | |
| 13 | BILL_OF_LADING | Bill of lading number | VARCHAR2 | |
| 14 | PACKING_SLIP | Packing slip number | VARCHAR2 | |
| 15 | SHIPPED_DATE | When the shipment was created/shipped | DATE | |
| 16 | EXPECTED_RECEIPT_DATE | Expected arrival date | DATE | Filter date |
Field provenance: hand-curated. 1 key field.
Boilerplate SQL
Starting point for reading the BICC-landed copy of RCV_SHIPMENT_HEADERSon Databricks — real DATE columns need no conversion, and the org anchor and the LAST_UPDATE_DATE watermark (the column incremental BICC extracts key on) are already in place. Set your Unity Catalog location, schema, and org values below; they’re substituted into the SQL and the copy button.
-- ============================================================
-- Table : RCV_SHIPMENT_HEADERS — Receipt and expected-receipt headers — one row per supplier ASN, receipt, in-transit shipment, or RMA return, grouped by receipt source; carries the receipt number, supplier, and expected/shipped dates
-- Purpose: Column-selected read of RCV_SHIPMENT_HEADERS — auto-generated from field metadata
-- Grain : One row per SHIPMENT_HEADER_ID
-- Notes : Auto-generated skeleton for Oracle Fusion Cloud data landed in your lakehouse by a BICC extract — there is no SQL path to the SaaS database. Column names follow Oracle's table documentation — if your landed data still carries PVO attribute headers, map names first; see quirks #pvo-drift. Dates are real DATE/TIMESTAMP columns — no conversion needed. WHO audit columns omitted (see the quirks guide); the optional LAST_UPDATE_DATE watermark filter supports incremental extracts.
-- ============================================================
SELECT
t.SHIPMENT_HEADER_ID AS "Surrogate key of the receipt/shipment header",
t.RECEIPT_SOURCE_CODE AS "Source of the shipment — VENDOR, INVENTORY, TRANSFER ORDER, CUSTOMER (RMA), OUTSOURCER",
t.RECEIPT_NUM AS "Receipt number for this header — ASN-only headers have none until goods arrive",
t.SHIPMENT_NUM AS "Source-assigned shipment number (ASN, in-transit, or transfer order)",
t.ASN_TYPE AS "ASN / ASBN advance notice, or STD plain receipt",
t.VENDOR_ID AS "Supplier on the shipment",
t.VENDOR_SITE_ID AS "Supplier site",
t.ORGANIZATION_ID AS "The FROM (shipping) org of in-transit shipments — NOT the receiving org; deliberately unanchored",
t.SHIP_TO_ORG_ID AS "The receiving inventory org where the receipt is created",
t.SHIP_TO_LOCATION_ID AS "Receiving location",
t.CUSTOMER_ID AS "Customer — RMA (customer-return) receipts only",
t.EMPLOYEE_ID AS "Person who created the receiving transaction",
t.BILL_OF_LADING AS "Bill of lading number",
t.PACKING_SLIP AS "Packing slip number",
t.SHIPPED_DATE AS "When the shipment was created/shipped",
t.EXPECTED_RECEIPT_DATE AS "Expected arrival date"
FROM <catalog>.<schema>.RCV_SHIPMENT_HEADERS t
WHERE
1 = 1 -- no partition column on this table; the filters below are optional
-- AND t.SHIPMENT_HEADER_ID = <SHIPMENT_HEADER_ID>
-- AND t.EXPECTED_RECEIPT_DATE >= DATE '<DATE_FROM>'
-- AND t.EXPECTED_RECEIPT_DATE <= DATE '<DATE_TO>'
-- AND t.LAST_UPDATE_DATE >= TIMESTAMP '<watermark>' -- the column incremental BICC extracts key on
ORDER BY t.SHIPMENT_HEADER_ID;6 parameters not filled: <catalog>, <schema>, <SHIPMENT_HEADER_ID>, <DATE_FROM>, <DATE_TO>, <watermark>
Relationships
1-hop neighbors — click a table to navigate there. FND lookup decode and translation edges are highlighted; they’re the joins newcomers most often get wrong.
Join details
ON RCV_SHIPMENT_HEADERS.SHIPMENT_HEADER_ID = RCV_SHIPMENT_LINES.SHIPMENT_HEADER_IDON RCV_SHIPMENT_HEADERS.VENDOR_ID = POZ_SUPPLIERS.VENDOR_IDON RCV_SHIPMENT_HEADERS.SHIP_TO_ORG_ID = INV_ORG_PARAMETERS.ORGANIZATION_IDON RCV_TRANSACTIONS.SHIPMENT_HEADER_ID = RCV_SHIPMENT_HEADERS.SHIPMENT_HEADER_ID