Search Results oe_order_num
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.1.1
-
VIEW: APPS.RCV_ENTER_RECEIPTS_V
12.1.1
-
VIEW: APPS.RCV_ENTER_RECEIPTS_SUP_INT_V
12.2.2
-
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.INL_ENTER_RECEIPTS_V
12.1.1
-
VIEW: APPS.RCV_ENTER_RECEIPTS_V
12.2.2
-
VIEW: APPS.RCV_ENTER_RECEIPTS_SUPPLIER_V
12.2.2
-
VIEW: APPS.RCV_ENTER_RECEIPTS_SUPPLIER_V
12.1.1
-
VIEW: APPS.RCV_ENTER_RECEIPTS_INTERNAL_V
12.2.2
-
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: 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_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: 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.RCV_ENTER_RECEIPTS_INTERNAL_V
12.1.1
-
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: 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: 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.RCV_ENTER_RECEIPTS_RMA_V
12.1.1
-
VIEW: APPS.RCV_ENTER_RECEIPTS_RMA_V
12.2.2
-
VIEW: PO.RCV_TRANSACTIONS_INTERFACE#
12.2.2
-
VIEW: APPS.INL_ENTER_RECEIPTS_PO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ENTER_RECEIPTS_PO_V, object_name:INL_ENTER_RECEIPTS_PO_V, status:VALID,
-
View: OE_PO_ENTER_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PO_ENTER_RECEIPTS_V, object_name:OE_PO_ENTER_RECEIPTS_V, status:VALID, product: ONT - Order Management , description: For enter receipts to invoice. , implementation_dba_data: APPS.OE_PO_ENTER_RECEIPTS_V ,
-
View: RCV_VRC_TXS_INT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_INT_V, object_name:RCV_VRC_TXS_INT_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_INT_V ,
-
VIEW: APPS.INL_IR_SOURCE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_IR_SOURCE_LINES_V, object_name:INL_IR_SOURCE_LINES_V, status:VALID,
-
View: INL_ENTER_RECEIPTS_PO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ENTER_RECEIPTS_PO_V, object_name:INL_ENTER_RECEIPTS_PO_V, status:VALID, product: INL - Oracle Landed Cost Management , description: A supplementary view used to simplify UI coding (Cloned from RCV_ENTER_RECEIPTS_PO_V). , implementation_dba_data: APPS.INL_ENTER_RECEIPTS_PO_V ,
-
VIEW: APPS.OE_PO_ENTER_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PO_ENTER_RECEIPTS_V, object_name:OE_PO_ENTER_RECEIPTS_V, status:VALID,
-
VIEW: APPS.INL_PO_SOURCE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_PO_SOURCE_LINES_V, object_name:INL_PO_SOURCE_LINES_V, status:VALID,
-
VIEW: APPS.INL_RMA_SOURCE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_RMA_SOURCE_LINES_V, object_name:INL_RMA_SOURCE_LINES_V, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.RCV_ENTER_RECEIPTS_PO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_PO_V, object_name:RCV_ENTER_RECEIPTS_PO_V, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
View: INL_ENTER_RECEIPTS_PO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ENTER_RECEIPTS_PO_V, object_name:INL_ENTER_RECEIPTS_PO_V, status:VALID, product: INL - Oracle Landed Cost Management , description: A supplementary view used to simplify UI coding (Cloned from RCV_ENTER_RECEIPTS_PO_V). , implementation_dba_data: APPS.INL_ENTER_RECEIPTS_PO_V ,
-
VIEW: APPS.OE_PO_ENTER_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PO_ENTER_RECEIPTS_V, object_name:OE_PO_ENTER_RECEIPTS_V, status:VALID,
-
View: RCV_VRC_TXS_INT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_INT_V, object_name:RCV_VRC_TXS_INT_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_INT_V ,
-
View: OE_PO_ENTER_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PO_ENTER_RECEIPTS_V, object_name:OE_PO_ENTER_RECEIPTS_V, status:VALID, product: ONT - Order Management , description: For enter receipts to invoice. , implementation_dba_data: APPS.OE_PO_ENTER_RECEIPTS_V ,
-
View: INL_ENTER_RECEIPTS_V
12.2.2
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: This view shows the expected receipts for LCM Shipments , implementation_dba_data: APPS.INL_ENTER_RECEIPTS_V ,
-
View: RCV_VRC_TXS_VENDINT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_VENDINT_V, object_name:RCV_VRC_TXS_VENDINT_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_VENDINT_V ,
-
View: RCV_VRC_TXS_VENDINT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_VENDINT_V, object_name:RCV_VRC_TXS_VENDINT_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_VENDINT_V ,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.RCV_ENTER_RECEIPTS_LCM_V
12.1.1
owner:APPS, object_type:VIEW, object_name:RCV_ENTER_RECEIPTS_LCM_V, status:VALID,
-
VIEW: APPS.RCV_ENTER_RECEIPTS_ASN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_ASN_V, object_name:RCV_ENTER_RECEIPTS_ASN_V, status:VALID,
-
VIEW: APPS.RCV_ENTER_RECEIPTS_PO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_PO_V, object_name:RCV_ENTER_RECEIPTS_PO_V, status:VALID,
-
VIEW: APPS.RCV_ENTER_RECEIPTS_ASN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_ASN_V, object_name:RCV_ENTER_RECEIPTS_ASN_V, status:VALID,