Search Results rcv_enter_receipts_inventory_v
Overview
RCV_ENTER_RECEIPTS_INVENTORY_V is an Oracle E-Business Suite view owned by the APPS schema in the Purchasing (PO) product family. The ETRM metadata flags this object with the description "10SC ONLY - Retrofitted," indicating it originates from a customer-specific or release-specific retrofit rather than a standard shipped interface. In Oracle EBS 12.1.1 and 12.2.2, views in the RCV_ENTER_RECEIPTS_* family supply the Receiving open interface and the Enter Receipts user interface with a normalized, flat projection of shipment and receipt data. This particular view provides receipt entry data sourced from shipment lines destined for inventory-facing destinations, presenting the columns expected by the Receiving form and the receiving open interface staging logic. Because it consolidates joined attributes from shipment headers, shipment lines, item master, and organization definitions, it allows applications to query a single row per shipment line without repeating complex multi-table joins.
Underlying Base Objects
The documented base objects underlying this view are:
- RCV_SHIPMENT_HEADERS (synonym) and RCV_SHIPMENT_LINES (synonym) — the primary transactional sources supplying receipt source code, shipment numbers, quantities shipped, item identifiers, requirement distribution, and destination information.
- MTL_SYSTEM_ITEMS (synonym) and MTL_UNITS_OF_MEASURE (synonym) — supply item control attributes such as serial number control, lot control, revision quantity control, shelf life, location control, and UOM class.
- ORG_ORGANIZATION_DEFINITIONS (view) — resolves organization names for the from/to organization identifiers carried on the shipment line.
- RCV_ROUTING_HEADERS (view) — supplies the routing name associated with the routing header on the shipment line.
- HR_LOCATIONS_ALL_TL (synonym) — provides the ship-to location code.
- HR_GENERAL and HR_SECURITY (packages) — invoked for organization and security context resolution used in the view logic.
- MTL_SUPPLY (synonym) — referenced within the view definition for supply or demand context.
The view text selects from a join of RCV_SHIPMENT_LINES (aliased RSL) and RCV_SHIPMENT_HEADERS (aliased RSH), left-joining MTL_SYSTEM_ITEMS, MTL_UNITS_OF_MEASURE, ORG_ORGANIZATION_DEFINITIONS, and RCV_ROUTING_HEADERS. Numerous columns are populated with literal values or typed NULLs (for example, TO_NUMBER(NULL), TO_DATE(NULL)) to satisfy the fixed column signature expected by the consuming form or interface.
Key Columns
- RECEIPT_SOURCE_CODE / SOURCE_DOCUMENT_CODE — identifies how the receipt originated and the source document type, with the view defaulting the receipt source context to 'INTERNAL'.
- SHIPMENT_HEADER_ID, SHIPMENT_LINE_ID, SHIPMENT_NUM, LINE_NUM — primary shipment and line identification keys.
- ITEM_ID, ITEM_REVISION, ITEM_DESCRIPTION, UNIT_OF_MEASURE, UOM_CLASS — item and UOM details for the received line.
- SERIAL_NUMBER_CONTROL_CODE, LOT_CONTROL_CODE, SHELF_LIFE_CODE, SHELF_LIFE_DAYS — item control attributes governing receiving validation.
- ALLOWED_UNITS_LOOKUP_CODE, LOCATION_CONTROL_CODE, RESTRICT_LOCATORS_CODE, RESTRICT_SUBINVENTORIES_CODE — inventory control settings derived from the item master.
- TO_ORGANIZATION_ID, FROM_ORGANIZATION_ID, ORGANIZATION_NAME — organization context for the shipment.
- QUANTITY_SHIPPED, EXPECTED_RECEIPT_DATE, PACKING_SLIP, BILL_OF_LADING, SHIPPED_DATE — quantity and shipping metadata.
- TO_SUBINVENTORY, DELIVER_TO_PERSON_ID, DELIVER_TO_LOCATION_ID, DESTINATION_TYPE_CODE — destination routing attributes.
- ROUTING_HEADER_ID, ROUTING_NAME — routing information for the receipt.
- ATTRIBUTE1 through ATTRIBUTE15 — the descriptive flexfield columns passed through from the shipment line.
- SHIP_TO_LOCATION_ID, LOCATION_CODE — ship-to location identifiers and codes.
Common Use Cases and Queries
This view is typically queried when diagnosing receipt entry behavior, validating what data the Receiving form will present for a shipment line, or building custom reports that require shipment and item control attributes in a single row.
Sample query to inspect outstanding shipment lines for inventory destinations:
SELECT shipment_num, line_num, item_description, unit_of_measure,
quantity_shipped, to_subinventory, organization_name,
shelf_life_code, lot_control_code
FROM apps.rcv_enter_receipts_inventory_v
WHERE to_organization_id = :org_id
AND shipment_num = :shipment_num;
A second common pattern filters on the item to review control attributes before receipt:
SELECT item_id, item_revision, serial_number_control_code,
location_control_code, restrict_locators_code,
restrict_subinventories_code
FROM apps.rcv_enter_receipts_inventory_v
WHERE item_id = :item_id
AND to_organization_id = :org_id;
Because the view is marked "10SC ONLY - Retrofitted," organizations upgrading between 12.1.1 and 12.2.2 should confirm that the object remains present and valid in their instance, as retrofit views can be superseded by standard seeded views during upgrade. Where it is absent, equivalent data can be assembled directly from RCV_SHIPMENT_HEADERS, RCV_SHIPMENT_LINES, and MTL_SYSTEM_ITEMS.
-
View: RCV_ENTER_RECEIPTS_INVENTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_INVENTORY_V, object_name:RCV_ENTER_RECEIPTS_INVENTORY_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_INVENTORY_V ,
-
View: RCV_ENTER_RECEIPTS_INVENTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_INVENTORY_V, object_name:RCV_ENTER_RECEIPTS_INVENTORY_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_INVENTORY_V ,
-
VIEW: APPS.RCV_ENTER_RECEIPTS_INTERNAL_V
12.2.2
-
VIEW: APPS.RCV_ENTER_RECEIPTS_INTERNAL_V
12.1.1
-
SYNONYM: APPS.MTL_SUPPLY
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_SUPPLY, status:VALID,
-
SYNONYM: APPS.MTL_SUPPLY
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SUPPLY, status:VALID,
-
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.RCV_ENTER_RECEIPTS_SUP_INT_V
12.1.1
-
VIEW: APPS.RCV_ROUTING_HEADERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ROUTING_HEADERS, object_name:RCV_ROUTING_HEADERS, status:VALID,
-
VIEW: APPS.RCV_ROUTING_HEADERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ROUTING_HEADERS, object_name:RCV_ROUTING_HEADERS, status:VALID,
-
VIEW: APPS.RCV_ENTER_RECEIPTS_SUP_INT_V
12.2.2
-
SYNONYM: APPS.HR_LOCATIONS_ALL_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_LOCATIONS_ALL_TL, status:VALID,
-
VIEW: APPS.RCV_ENTER_RECEIPTS_V
12.1.1
-
SYNONYM: APPS.HR_LOCATIONS_ALL_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_LOCATIONS_ALL_TL, 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.INL_ENTER_RECEIPTS_V
12.1.1
-
VIEW: APPS.RCV_ENTER_RECEIPTS_V
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
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,
-
12.2.2 FND Design Data
12.2.2
-
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: APPS.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,
-
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: APPS.RCV_ENTER_RECEIPTS_INVENTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_INVENTORY_V, object_name:RCV_ENTER_RECEIPTS_INVENTORY_V, status:VALID,
-
VIEW: APPS.RCV_ENTER_RECEIPTS_INVENTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_INVENTORY_V, object_name:RCV_ENTER_RECEIPTS_INVENTORY_V, status:VALID,
-
VIEW: APPS.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,
-
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: 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: 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 ,
-
SYNONYM: APPS.RCV_SHIPMENT_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RCV_SHIPMENT_HEADERS, status:VALID,
-
SYNONYM: APPS.RCV_SHIPMENT_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RCV_SHIPMENT_LINES, status:VALID,
-
SYNONYM: APPS.RCV_SHIPMENT_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RCV_SHIPMENT_HEADERS, status:VALID,
-
VIEW: APPS.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,
-
SYNONYM: APPS.RCV_SHIPMENT_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RCV_SHIPMENT_LINES, status:VALID,
-
SYNONYM: APPS.MTL_UNITS_OF_MEASURE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_UNITS_OF_MEASURE, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
SYNONYM: APPS.MTL_UNITS_OF_MEASURE
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_UNITS_OF_MEASURE, status:VALID,
-
VIEW: APPS.ORG_ORGANIZATION_DEFINITIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.ORG_ORGANIZATION_DEFINITIONS, object_name:ORG_ORGANIZATION_DEFINITIONS, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
eTRM - INL Tables and Views
12.1.1
description: This table stores information on taxes associated to Shipment components. ,
-
VIEW: APPS.ORG_ORGANIZATION_DEFINITIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.ORG_ORGANIZATION_DEFINITIONS, object_name:ORG_ORGANIZATION_DEFINITIONS, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS, status:VALID,
-
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 ,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,