Search Results from_interface
Overview
APPS.RCV_DISTRIBUTIONS_PRINT_INV is an Oracle E-Business Suite internal view that consolidates receiving distribution and delivery information for reporting, printing, and downstream warehouse processing. It is registered in the Applications schema (APPS) under the FND Design Data product code PO, with a status of VALID. The view is classified as "Oracle Internal Use Only": Oracle Corporation does not support direct access to application data through this object except from standard Oracle Applications programs. Developers and integrators should therefore treat it as a read-only reporting construct rather than a supported API surface.
The view presents delivery-centric shipment lines, combining receipt transaction details, on-hand/supply quantities, organizational context, and delivery destination attributes. Its most notable characteristic is that it exposes a denormalized destination model — person, location, and organization are stored as separate VARCHAR2 columns — which allows receiving and shipping reports to display human-readable destination values without additional joins. This denormalization is why the view is frequently encountered when users search for the attribute deliver_to_org.
Underlying Base Objects
The documented reference list for this view includes the following base objects:
- FND_GLOBAL (PACKAGE) — supplies session context such as organization and user identifiers.
- RCV_SHIPMENT_HEADERS and RCV_SHIPMENT_LINES — the shipment header and line records from which document numbers and delivery quantities are derived.
- RCV_TRANSACTIONS — the receiving transaction history underlying delivered quantity and transaction identifiers.
- RCV_TRANSACTIONS_INTERFACE — open interface records for transactions pending processing.
- MTL_SUPPLY — inventory supply records used for outstanding quantity calculations.
- PO_LOOKUP_CODES (VIEW) — supplies translated lookup meanings for destination and delivery transaction types.
- HR_ALL_ORGANIZATION_UNITS_TL and HR_LOCATIONS_ALL_TL — translated organization unit and location names that resolve the
deliver_to_organddeliver_to_locationvalues. - PER_ALL_PEOPLE_F — resolves the
deliver_to_personvalue to a person or employee. - WMS_LICENSE_PLATE_NUMBERS — supports license plate (LPN) and transfer license plate attributes.
Together these objects make the view a cross-functional join spanning Purchasing, Inventory, Human Resources, and Warehouse Management System data.
Key Columns
- ORGANIZATION_ID — operating unit or inventory organization identifier; the primary partitioning attribute for reporting.
- DELIVER_TO_ORG, DELIVER_TO_LOCATION, DELIVER_TO_PERSON — the denormalized delivery destination triple. DELIVER_TO_ORG is the organization receiving the material, populated from HR organization units.
- DESTINATION_TYPE and DESTINATION — combined destination descriptor; DESTINATION supports up to 553 characters and typically concatenates destination components.
- DOCUMENT_NUM — the source shipment or receipt document number.
- OUTSTANDING_QUANTITY — quantity still to be delivered, derived from supply records.
- QUANTITY_DELIVERED and DELIVERY_DATE, DELIVERED_BY — the delivered quantity, date, and actor.
- DELIVER_TRANSACTION_TYPE — transaction type associated with the delivery.
- DISTRIBUTION_ID, TRANSACTION_ID — keys linking to distribution and transaction detail.
- DESTINATION_SUBINVENTORY and LOCATOR_ID — target subinventory and locator.
- WIP_ENTITY_ID, WIP_LINE_ID, WIP_OPERATION_SEQ_NUM, WIP_RESOURCE_SEQ_NUM, WIP_REPETITIVE_SCHEDULE_ID, BOM_RESOURCE_ID — shop-floor destination attributes for WIP-directed deliveries.
- LICENSE_PLATE_NUMBER and TRANSFER_LICENSE_PLATE_NUMBER — LPN identifiers for the receipt or transfer.
- FROM_INTERFACE — indicates whether the record originates from the open interface.
Common Use Cases and Queries
Typical scenarios include printing receiving distribution reports, reconciling outstanding versus delivered quantities by destination, and tracing deliveries to WIP or inventory destinations. The following query groups outstanding quantities by delivery organization and destination subinventory:
SELECT deliver_to_org,
destination_subinventory,
SUM(outstanding_quantity) outstanding_qty
FROM apps.rcv_distributions_print_inv
WHERE organization_id = :p_org_id
GROUP BY deliver_to_org, destination_subinventory;
A second pattern lists pending deliverables for a given person or location:
SELECT document_num,
deliver_to_person,
deliver_to_location,
deliver_transaction_type,
delivery_date,
quantity_delivered
FROM apps.rcv_distributions_print_inv
WHERE organization_id = :p_org_id
AND NVL(delivery_date, SYSDATE) >= NVL(:p_from_date, SYSDATE);
Because the view is flagged Oracle Internal Use Only, these queries are appropriate for diagnostic and reporting purposes only. Oracle's supported approach is to obtain equivalent data through standard receiving and shipping program outputs or through the published receiving APIs, rather than by embedding direct references to RCV_DISTRIBUTIONS_PRINT_INV in custom application code.
-
VIEW: APPS.RCV_DISTRIBUTIONS_PRINT_INV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_DISTRIBUTIONS_PRINT_INV, object_name:RCV_DISTRIBUTIONS_PRINT_INV, status:VALID,
-
VIEW: APPS.RCV_DISTRIBUTIONS_PRINT_REQ
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_DISTRIBUTIONS_PRINT_REQ, object_name:RCV_DISTRIBUTIONS_PRINT_REQ, status:VALID,
-
VIEW: APPS.RCV_DISTRIBUTIONS_PRINT_REQ
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_DISTRIBUTIONS_PRINT_REQ, object_name:RCV_DISTRIBUTIONS_PRINT_REQ, status:VALID,
-
VIEW: APPS.RCV_DISTRIBUTIONS_PRINT_INV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_DISTRIBUTIONS_PRINT_INV, object_name:RCV_DISTRIBUTIONS_PRINT_INV, status:VALID,
-
VIEW: APPS.RCV_DISTRIBUTIONS_PRINT_RMA
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_DISTRIBUTIONS_PRINT_RMA, object_name:RCV_DISTRIBUTIONS_PRINT_RMA, status:VALID,
-
VIEW: APPS.RCV_DISTRIBUTIONS_PRINT_PO
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_DISTRIBUTIONS_PRINT_PO, object_name:RCV_DISTRIBUTIONS_PRINT_PO, status:VALID,
-
VIEW: APPS.RCV_DISTRIBUTIONS_PRINT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_DISTRIBUTIONS_PRINT, object_name:RCV_DISTRIBUTIONS_PRINT, status:VALID,
-
VIEW: APPS.RCV_DISTRIBUTIONS_PRINT_PO
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_DISTRIBUTIONS_PRINT_PO, object_name:RCV_DISTRIBUTIONS_PRINT_PO, status:VALID,
-
VIEW: APPS.RCV_DISTRIBUTIONS_PRINT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_DISTRIBUTIONS_PRINT, object_name:RCV_DISTRIBUTIONS_PRINT, status:VALID,
-
VIEW: APPS.RCV_DISTRIBUTIONS_PRINT_RMA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_DISTRIBUTIONS_PRINT_RMA, object_name:RCV_DISTRIBUTIONS_PRINT_RMA, status:VALID,
-
VIEW: APPS.RCV_RECEIPTS_PRINT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT, object_name:RCV_RECEIPTS_PRINT, status:VALID,
-
VIEW: APPS.RCV_RECEIPTS_PRINT_PO
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_PO, object_name:RCV_RECEIPTS_PRINT_PO, status:VALID,
-
VIEW: APPS.RCV_RECEIPTS_PRINT_RMA
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_RMA, object_name:RCV_RECEIPTS_PRINT_RMA, status:VALID,
-
VIEW: APPS.RCV_RECEIPTS_PRINT_INV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_INV, object_name:RCV_RECEIPTS_PRINT_INV, status:VALID,
-
VIEW: APPS.RCV_RECEIPTS_PRINT_RMA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_RMA, object_name:RCV_RECEIPTS_PRINT_RMA, status:VALID,
-
VIEW: APPS.RCV_RECEIPTS_PRINT_REQ
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_REQ, object_name:RCV_RECEIPTS_PRINT_REQ, status:VALID,
-
VIEW: APPS.RCV_RECEIPTS_PRINT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT, object_name:RCV_RECEIPTS_PRINT, status:VALID,
-
VIEW: APPS.RCV_RECEIPTS_PRINT_PO
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_PO, object_name:RCV_RECEIPTS_PRINT_PO, status:VALID,
-
VIEW: APPS.RCV_RECEIPTS_PRINT_INV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_INV, object_name:RCV_RECEIPTS_PRINT_INV, status:VALID,
-
VIEW: APPS.RCV_RECEIPTS_PRINT_REQ
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_REQ, object_name:RCV_RECEIPTS_PRINT_REQ, status:VALID,
-
View: RCV_DISTRIBUTIONS_PRINT_REQ
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_DISTRIBUTIONS_PRINT_REQ, object_name:RCV_DISTRIBUTIONS_PRINT_REQ, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_DISTRIBUTIONS_PRINT_REQ ,
-
View: RCV_RECEIPTS_PRINT_INV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_INV, object_name:RCV_RECEIPTS_PRINT_INV, status:VALID, product: PO - Purchasing , description: Print view of receipts , implementation_dba_data: APPS.RCV_RECEIPTS_PRINT_INV ,
-
View: RCV_DISTRIBUTIONS_PRINT_RMA
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_DISTRIBUTIONS_PRINT_RMA, object_name:RCV_DISTRIBUTIONS_PRINT_RMA, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_DISTRIBUTIONS_PRINT_RMA ,
-
View: RCV_DISTRIBUTIONS_PRINT_PO
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_DISTRIBUTIONS_PRINT_PO, object_name:RCV_DISTRIBUTIONS_PRINT_PO, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_DISTRIBUTIONS_PRINT_PO ,
-
View: RCV_DISTRIBUTIONS_PRINT_REQ
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_DISTRIBUTIONS_PRINT_REQ, object_name:RCV_DISTRIBUTIONS_PRINT_REQ, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_DISTRIBUTIONS_PRINT_REQ ,
-
View: RCV_DISTRIBUTIONS_PRINT_RMA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_DISTRIBUTIONS_PRINT_RMA, object_name:RCV_DISTRIBUTIONS_PRINT_RMA, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_DISTRIBUTIONS_PRINT_RMA ,
-
View: RCV_RECEIPTS_PRINT_INV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_INV, object_name:RCV_RECEIPTS_PRINT_INV, status:VALID, product: PO - Purchasing , description: Print view of receipts , implementation_dba_data: APPS.RCV_RECEIPTS_PRINT_INV ,
-
View: RCV_DISTRIBUTIONS_PRINT_PO
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_DISTRIBUTIONS_PRINT_PO, object_name:RCV_DISTRIBUTIONS_PRINT_PO, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_DISTRIBUTIONS_PRINT_PO ,
-
View: RCV_DISTRIBUTIONS_PRINT_INV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_DISTRIBUTIONS_PRINT_INV, object_name:RCV_DISTRIBUTIONS_PRINT_INV, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_DISTRIBUTIONS_PRINT_INV ,
-
View: RCV_RECEIPTS_PRINT_RMA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_RMA, object_name:RCV_RECEIPTS_PRINT_RMA, status:VALID, product: PO - Purchasing , description: Print view of receipts , implementation_dba_data: APPS.RCV_RECEIPTS_PRINT_RMA ,
-
View: RCV_RECEIPTS_PRINT_RMA
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_RMA, object_name:RCV_RECEIPTS_PRINT_RMA, status:VALID, product: PO - Purchasing , description: Print view of receipts , implementation_dba_data: APPS.RCV_RECEIPTS_PRINT_RMA ,
-
View: RCV_RECEIPTS_PRINT_REQ
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_REQ, object_name:RCV_RECEIPTS_PRINT_REQ, status:VALID, product: PO - Purchasing , description: Print view of receipts , implementation_dba_data: APPS.RCV_RECEIPTS_PRINT_REQ ,
-
View: RCV_RECEIPTS_PRINT_REQ
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_REQ, object_name:RCV_RECEIPTS_PRINT_REQ, status:VALID, product: PO - Purchasing , description: Print view of receipts , implementation_dba_data: APPS.RCV_RECEIPTS_PRINT_REQ ,
-
View: RCV_RECEIPTS_PRINT_PO
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_PO, object_name:RCV_RECEIPTS_PRINT_PO, status:VALID, product: PO - Purchasing , description: Print view of receipts , implementation_dba_data: APPS.RCV_RECEIPTS_PRINT_PO ,
-
View: RCV_DISTRIBUTIONS_PRINT_INV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_DISTRIBUTIONS_PRINT_INV, object_name:RCV_DISTRIBUTIONS_PRINT_INV, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_DISTRIBUTIONS_PRINT_INV ,
-
View: RCV_RECEIPTS_PRINT_PO
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_PO, object_name:RCV_RECEIPTS_PRINT_PO, status:VALID, product: PO - Purchasing , description: Print view of receipts , implementation_dba_data: APPS.RCV_RECEIPTS_PRINT_PO ,
-
View: RCV_DISTRIBUTIONS_PRINT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_DISTRIBUTIONS_PRINT, object_name:RCV_DISTRIBUTIONS_PRINT, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_DISTRIBUTIONS_PRINT ,
-
View: RCV_DISTRIBUTIONS_PRINT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_DISTRIBUTIONS_PRINT, object_name:RCV_DISTRIBUTIONS_PRINT, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_DISTRIBUTIONS_PRINT ,
-
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 ,