Search Results po_shipment_number
Overview
APPS.RCV_ENTER_RECEIPTS_SUP_INT_V is an Oracle E-Business Suite view residing in the Receiving (RCV) module. It is designed to support the Receiving Open Interface and the Enter Receipts user interface, exposing a consolidated projection of receipt-related data across multiple receiving entry paths. The view name suffix "SUP_INT_V" indicates its role as a Supplier/Internal-facing integration source, providing the flattened record structure that downstream processes and forms consume when creating or validating receipt records.
Its principal purpose is to unify data originating from three distinct receiving scenarios — Advance Shipment Notices (ASN), internal requisitions, and inventory transfers — with data from standard purchase order receipts. This enables the Enter Receipts form and the Receiving Open Interface to operate against a single query surface rather than querying each source independently. For the user searching on "rcv_shipment_number," this view is directly relevant because RCV_SHIPMENT_NUMBER is one of its exposed columns, derived from the shipment header associated with each receipt line.
The view carries a cost-based transformation hint using opt_param('_optimizer_cost_based_transformation','off'), indicating that the optimizer is intentionally steered away from certain cost-based transformations, likely to preserve predictable execution plans for this composite union-style structure.
Underlying Base Objects
The ETRM metadata documents the following referenced base objects:
- RCV_ENTER_RECEIPTS_ASN_V — supplies ASN-based receipt rows, including shipment and shipping attributes such as BILL_OF_LADING, SHIPPED_DATE, FREIGHT_CARRIER_CODE, WAYBILL_AIRBILL_NUM, and CONTAINER_NUM.
- RCV_ENTER_RECEIPTS_INT_REQ_V — supplies internal requisition-based receipt rows, carrying REQ_HEADER_ID, REQ_NUMBER, REQ_LINE_ID, REQ_LINE, and REQ_DISTRIBUTION_ID.
- RCV_ENTER_RECEIPTS_INVENTORY_V — supplies inventory transfer receipt rows, distinguished by the TO_ORGANIZATION_ID and FROM_ORGANIZATION_ID pairing and OUTSIDE_OPERATION_FLAG.
- RCV_ENTER_RECEIPTS_PO_V — supplies purchase order-based receipt rows, including PO_HEADER_ID, PO_NUMBER, PO_LINE_ID, PO_LINE_LOCATION_ID, and PO_RELEASE_ID.
- PO_CLM_INTG_GRP (package) — supports purchasing/contracts integration logic used in deriving or validating order-level attributes.
- HR_SECURITY and HR_GENERAL (packages) — provide security and general HR utility functions, typically for organization-based access control applied to the returned rows.
The view consequently behaves as a consolidation layer over four entry views, with package calls supplying security filtering and purchasing integration context at runtime.
Key Columns
The view exposes over one hundred columns. The most significant groupings are:
- Receipt source and type: SOURCE_TYPE_CODE, RECEIPT_SOURCE_CODE, ORDER_TYPE_CODE, ORDER_TYPE, SOURCE — identify whether the row originates from a purchase order, internal requisition, ASN, or inventory transfer.
- Shipment identification: RCV_SHIPMENT_HEADER_ID, RCV_SHIPMENT_NUMBER, RCV_SHIPMENT_LINE_ID, RCV_LINE_NUMBER — the shipment header and line identifiers, with RCV_SHIPMENT_NUMBER being the human-readable shipment number. Also PO_SHIPMENT_NUMBER at the purchasing shipment level.
- Order references: PO_HEADER_ID, PO_NUMBER, PO_LINE_ID, PO_LINE_NUMBER, PO_LINE_LOCATION_ID, PO_RELEASE_ID, PO_RELEASE_NUMBER; and for requisitions, REQ_HEADER_ID, REQ_NUMBER, REQ_LINE_ID, REQ_LINE, REQ_DISTRIBUTION_ID.
- Item and UOM: ITEM_ID, ITEM_NUMBER, ITEM_REVISION, ITEM_DESCRIPTION, PRIMARY_UOM, ORDERED_UOM, ORDERED_QTY, VENDOR_ITEM_NUMBER.
- Control flags: SERIAL_NUMBER_CONTROL_CODE, LOT_CONTROL_CODE, SHELF_LIFE_CODE, RESTRICT_LOCATORS_CODE, RESTRICT_SUBINVENTORIES_CODE, ITEM_LOCATOR_CONTROL, INSPECTION_REQUIRED_FLAG, RECEIPT_REQUIRED_FLAG, ENFORCE_SHIP_TO_LOCATION_CODE, CLOSED_CODE.
- Pricing and currency: UNIT_PRICE, CURRENCY_CODE, CURRENCY_CONVERSION_TYPE, CURRENCY_CONVERSION_DATE, CURRENCY_CONVERSION_RATE, RATE_TYPE_DISPLAY, MATCH_OPTION.
- Shipping and logistics: SHIP_TO_LOCATION_ID, SHIP_TO_LOCATION, PACKING_SLIP, BILL_OF_LADING, SHIPPED_DATE, FREIGHT_CARRIER_CODE, WAYBILL_AIRBILL_NUM, FREIGHT_BILL_NUM, VENDOR_LOT_NUM, CONTAINER_NUM, TRUCK_NUM, BAR_CODE_LABEL, COUNTRY_OF_ORIGIN_CODE, ASN_TYPE.
- Flexfield attributes: ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 for descriptive flexfield capture.
- Order-to-cash cross reference: OE_ORDER_HEADER_ID, OE_ORDER_NUM, OE_ORDER_LINE_ID, OE_ORDER_LINE_NUM, CUSTOMER_ID.
Common Use Cases and Queries
Typical uses include reporting on receipts awaiting entry, validating shipment contents for the Receiving Open Interface, and linking purchasing and requisition data to shipment records.
To locate receipts by shipment number:
SELECT rcv_shipment_number, po_number, item_number, ordered_qty, receipt_source_code FROM apps.rcv_enter_receipts_sup_int_v WHERE rcv_shipment_number = :shipment_number;
To list all open receipts for a purchase order by source type:
SELECT receipt_source_code, po_number, po_line_number, item_number, expected_receipt_date FROM apps.rcv_enter_receipts_sup_int_v WHERE po_number = :po_number AND NVL(closed_code,'OPEN') <> 'CLOSED';
To identify ASN-originated shipments with logistics detail:
SELECT rcv_shipment_number, asn_type, bill_of_lading, freight_carrier_code, shipped_date FROM apps.rcv_enter_receipts_sup_int_v WHERE asn_type IS NOT NULL;
Because row-level security is applied via HR_SECURITY and HR_GENERAL, results are automatically restricted to organizations the user is authorized to access. Queries should therefore be executed in the context of the requesting responsibility. For integration extracts, the view is commonly filtered on SOURCE_TYPE_CODE or ORDER_TYPE_CODE to isolate purchase order versus internal requisition versus inventory transfer populations.
-
VIEW: APPS.RCV_ENTER_RECEIPTS_SUP_INT_V
12.2.2
-
VIEW: APPS.INL_ENTER_RECEIPTS_V
12.1.1
-
VIEW: APPS.RCV_ENTER_RECEIPTS_V
12.2.2
-
VIEW: APPS.RCV_ENTER_RECEIPTS_V
12.1.1
-
View: INL_ENTER_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ENTER_RECEIPTS_V, object_name:INL_ENTER_RECEIPTS_V, status:VALID, product: INL - Oracle Landed Cost Management , description: A supplementary view used to simplify UI coding (Cloned from RCV_ENTER_RECEIPTS_V). , implementation_dba_data: APPS.INL_ENTER_RECEIPTS_V ,
-
VIEW: APPS.RCV_ENTER_RECEIPTS_SUPPLIER_V
12.2.2
-
VIEW: APPS.RCV_ENTER_RECEIPTS_SUPPLIER_V
12.1.1
-
View: RCV_ENTER_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_V, object_name:RCV_ENTER_RECEIPTS_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_V ,
-
View: RCV_ENTER_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_V, object_name:RCV_ENTER_RECEIPTS_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_V ,
-
VIEW: APPS.RCV_ENTER_RECEIPTS_SUP_INT_V
12.1.1
-
View: RCV_ENTER_RECEIPTS_SUP_INT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_SUP_INT_V, object_name:RCV_ENTER_RECEIPTS_SUP_INT_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_SUP_INT_V ,
-
View: RCV_ENTER_RECEIPTS_SUP_INT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_SUP_INT_V, object_name:RCV_ENTER_RECEIPTS_SUP_INT_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_SUP_INT_V ,
-
View: RCV_ENTER_RECEIPTS_SUPPLIER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_SUPPLIER_V, object_name:RCV_ENTER_RECEIPTS_SUPPLIER_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_SUPPLIER_V ,
-
VIEW: APPS.POR_RCV_ORD_REQUESTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_ORD_REQUESTER_V, object_name:POR_RCV_ORD_REQUESTER_V, status:VALID,
-
VIEW: APPS.RCV_ENTER_RECEIPTS_INTERNAL_V
12.1.1
-
VIEW: APPS.RCV_ENTER_RECEIPTS_INTERNAL_V
12.2.2
-
View: POR_RCV_ALL_ITEMS_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_ALL_ITEMS_V1, object_name:POR_RCV_ALL_ITEMS_V1, status:VALID, product: ICX - Oracle iProcurement , description: View for all items that can be received , implementation_dba_data: APPS.POR_RCV_ALL_ITEMS_V1 ,
-
View: POR_RCV_REQ_REQUESTOR_V
12.2.2
product: ICX - Oracle iProcurement , description: View for receiving items sorted by requester , implementation_dba_data: Not implemented in this database ,
-
View: RCV_ENTER_RECEIPTS_SUPPLIER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_SUPPLIER_V, object_name:RCV_ENTER_RECEIPTS_SUPPLIER_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_SUPPLIER_V ,
-
View: POR_RCV_PURCHASE_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_PURCHASE_ITEMS_V, object_name:POR_RCV_PURCHASE_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_PURCHASE_ITEMS_V ,
-
View: POR_RCV_PURCHASE_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_PURCHASE_ITEMS_V, object_name:POR_RCV_PURCHASE_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_PURCHASE_ITEMS_V ,
-
View: RCV_ENTER_RECEIPTS_INTERNAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_INTERNAL_V, object_name:RCV_ENTER_RECEIPTS_INTERNAL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_INTERNAL_V ,
-
View: RCV_ENTER_RECEIPTS_INTERNAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_INTERNAL_V, object_name:RCV_ENTER_RECEIPTS_INTERNAL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_INTERNAL_V ,
-
VIEW: APPS.OKE_DELIVERABLE_PURCHASING_V
12.2.2
owner:APPS, object_type:VIEW, object_name:OKE_DELIVERABLE_PURCHASING_V, status:VALID,
-
View: POR_RCV_ALL_ITEMS_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_ALL_ITEMS_V1, object_name:POR_RCV_ALL_ITEMS_V1, status:VALID, product: ICX - Oracle iProcurement , description: View for all items that can be received , implementation_dba_data: APPS.POR_RCV_ALL_ITEMS_V1 ,
-
VIEW: APPS.OKE_DTS_PURCHASING_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_DTS_PURCHASING_V, object_name:OKE_DTS_PURCHASING_V, status:VALID,
-
VIEW: APPS.RCV_ENTER_RECEIPTS_RMA_V
12.1.1
-
VIEW: APPS.POR_RCV_ORD_REQUESTER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_ORD_REQUESTER_V, object_name:POR_RCV_ORD_REQUESTER_V, status:VALID,
-
View: RCV_ENTER_RECEIPTS_RMA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_RMA_V, object_name:RCV_ENTER_RECEIPTS_RMA_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_RMA_V ,
-
VIEW: APPS.INVFV_INVENTORY_SUPPLIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_INVENTORY_SUPPLIES, object_name:INVFV_INVENTORY_SUPPLIES, status:VALID,
-
VIEW: APPS.OKE_DELIVERABLE_PURCHASING_V
12.1.1
owner:APPS, object_type:VIEW, object_name:OKE_DELIVERABLE_PURCHASING_V, status:VALID,
-
VIEW: APPS.OKE_DTS_PURCHASING_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_DTS_PURCHASING_V, object_name:OKE_DTS_PURCHASING_V, status:VALID,
-
View: POR_RCV_REQ_REQUESTOR_V
12.1.1
product: ICX - Oracle iProcurement , description: View for receiving items sorted by requester , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.RCV_ENTER_RECEIPTS_RMA_V
12.2.2
-
VIEW: APPS.INVFV_INVENTORY_SUPPLIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_INVENTORY_SUPPLIES, object_name:INVFV_INVENTORY_SUPPLIES, status:VALID,
-
View: RCV_ENTER_RECEIPTS_RMA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_RMA_V, object_name:RCV_ENTER_RECEIPTS_RMA_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_RMA_V ,
-
VIEW: APPS.OKE_DTS_PAYABLES_V
12.2.2
owner:APPS, object_type:VIEW, object_name:OKE_DTS_PAYABLES_V, status:VALID,
-
View: POR_RCV_MY_ITEMS_V
12.2.2
product: ICX - Oracle iProcurement , description: View to query receiving on 'My Items to Receive' , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.OKE_DTS_PAYABLES_V
12.1.1
owner:APPS, object_type:VIEW, object_name:OKE_DTS_PAYABLES_V, status:VALID,
-
View: POR_RCV_MY_ITEMS_V
12.1.1
product: ICX - Oracle iProcurement , description: View to query receiving on 'My Items to Receive' , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_ORD_REQUESTER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_ORD_REQUESTER_V, object_name:POR_RCV_ORD_REQUESTER_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_ORD_REQUESTER_V ,
-
View: POR_RCV_SUPPL_V
12.1.1
product: ICX - Oracle iProcurement , description: View for querying items, to receive, searched by supplier. , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_PURCHASE_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_PURCHASE_RECEIPTS_V, object_name:POR_RCV_PURCHASE_RECEIPTS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_PURCHASE_RECEIPTS_V ,
-
View: POR_RCV_REQ_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_REQ_ITEMS_V, object_name:POR_RCV_REQ_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_REQ_ITEMS_V ,
-
VIEW: APPS.POR_RCV_ALL_ITEMS_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_ALL_ITEMS_V1, object_name:POR_RCV_ALL_ITEMS_V1, status:VALID,
-
View: POR_RCV_ORD_REQUESTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_ORD_REQUESTER_V, object_name:POR_RCV_ORD_REQUESTER_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_ORD_REQUESTER_V ,
-
View: POR_RCV_REQ_NUM_V
12.1.1
product: ICX - Oracle iProcurement , description: View for receiving items sorted by requisition number , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_REQ_NUM_V
12.2.2
product: ICX - Oracle iProcurement , description: View for receiving items sorted by requisition number , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_REQ_PURCH_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_REQ_PURCH_RECEIPTS_V, object_name:POR_RCV_REQ_PURCH_RECEIPTS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_REQ_PURCH_RECEIPTS_V ,
-
View: POR_RCV_SUPPL_V
12.2.2
product: ICX - Oracle iProcurement , description: View for querying items, to receive, searched by supplier. , implementation_dba_data: Not implemented in this database ,