Search Results rcv_receipts_print_inv
Overview
RCV_RECEIPTS_PRINT_INV is an Oracle E-Business Suite view owned by the APPS schema and classified under the Purchasing (PO) product family. It is a specialized print view of receipts, designed to expose receiving information in a report-ready, denormalized layout for inventory-sourced receipt transactions. Unlike the operational base tables that store receiving data across normalized structures, this view flattens the receipt header, shipment line, transaction, and location details into a single row set suitable for printing, reporting, and reconciliation.
The view's defining characteristic is its restriction to receipts whose receipt source code is 'INVENTORY'. This means the view does not surface supplier-originated receipts in the same way as its non-inventory counterpart; it is deliberately scoped to inventory receipts processed through the receiving open interface and transaction tables. The view text selects a mix of real column values and literal placeholders (empty strings and NULL numbers) to preserve positional integrity expected by downstream printing routines. In Oracle EBS 12.1.1 and 12.2.2 the object carries a VALID status and is referenced in ETRM documentation under the PO module.
Underlying Base Objects
The view joins several documented base objects. RCV_SHIPMENT_HEADERS supplies header-level data such as receipt number, shipment number, expected receipt date, freight carrier, and packing slip. RCV_SHIPMENT_LINES provides line-level attributes including item, revision, category, vendor item number, quantity shipped, and quantity received. RCV_TRANSACTIONS contributes transaction details such as quantity, primary quantity, transaction date, subinventory, locator, and vendor lot number.
Supporting joins enrich the output: RCV_ROUTING_HEADERS supplies the routing name; PO_LOOKUP_CODES is referenced twice (aliased PLC1 and PLC2) to translate lookup codes into displayed fields; PER_ALL_PEOPLE_F resolves the receiver's first and last name; HR_LOCATIONS_ALL_TL provides location codes for both the receiver and shipment location; HR_ORGANIZATION_UNITS returns the organization name; and FINANCIALS_SYSTEM_PARAMS_ALL binds organizational or system parameters. Two references to WMS_LICENSE_PLATE_NUMBERS (WLPN1 and WLPN2) expose the license plate number and transfer license plate number. The view also indirectly relies on security and utility packages including FND_GLOBAL, HR_SECURITY, and HR_GENERAL, which govern data access and organizational filtering.
Key Columns
- Receipt and shipment identifiers:
RECEIPT_NUM,SHIPMENT_NUM,SHIPMENT_HEADER_ID,SHIPMENT_LINE_ID,TRANSACTION_ID,GROUP_ID. - Item information:
ITEM_ID,ITEM_REVISION,CATEGORY_ID,ITEM_DESCRIPTION,VENDOR_ITEM_NUM,UNIT_OF_MEASURE. - Quantities:
QUANTITY_SHIPPED,QUANTITY,PRIMARY_QUANTITY, and a computed in-transit balance (QUANTITY_SHIPPED - NVL(QUANTITY_RECEIVED, 0)). - Transaction context:
TRANSACTION_DATE,SUBINVENTORY,LOCATOR_ID,VENDOR_LOT_NUM. - Logistics and locations:
SHIP_TO_ORG_ID,ROUTING_NAME,FREIGHT_CARRIER_CODE,BILL_OF_LADING,NUM_OF_CONTAINERS,LOCATION_CODE. - License plates:
LICENSE_PLATE_NUMBERandTRANSFER_LICENSE_PLATE_NUMBER, sourced from WMS license plate tables. - Receiver identity:
FIRST_NAME,LAST_NAME, and the organization unit name viaHRU.NAME.
Common Use Cases and Queries
The view is typically used for printed receiving reports, inventory receipt reconciliation, and audit of goods received against shipments. A sample query filtering by receipt number:
SELECT receipt_num, shipment_num, item_description, quantity, primary_quantity, transaction_date FROM apps.rcv_receipts_print_inv WHERE receipt_num = :p_receipt_num;SELECT shipment_num, vendor_item_num, license_plate_number, subinventory FROM apps.rcv_receipts_print_inv WHERE shipment_header_id = :p_header_id;SELECT receipt_num, first_name, last_name, location_code, routing_name FROM apps.rcv_receipts_print_inv WHERE transaction_date BETWEEN :p_from AND :p_to;
Because the view restricts rows to inventory-sourced receipts and joins HR security tables, query results are subject to organization and user access restrictions enforced through HR_SECURITY and FND_GLOBAL. This makes it well suited for secured operational reporting rather than unrestricted data extraction.
-
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_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: 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_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_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,
-
SYNONYM: APPS.HR_LOCATIONS_ALL_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_LOCATIONS_ALL_TL, status:VALID,
-
SYNONYM: APPS.HR_LOCATIONS_ALL_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_LOCATIONS_ALL_TL, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.WMS_LICENSE_PLATE_NUMBERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WMS_LICENSE_PLATE_NUMBERS, status:VALID,
-
SYNONYM: APPS.RCV_TRANSACTIONS_INTERFACE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RCV_TRANSACTIONS_INTERFACE, status:VALID,
-
SYNONYM: APPS.WMS_LICENSE_PLATE_NUMBERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WMS_LICENSE_PLATE_NUMBERS, status:VALID,
-
SYNONYM: APPS.RCV_TRANSACTIONS_INTERFACE
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RCV_TRANSACTIONS_INTERFACE, status:VALID,
-
SYNONYM: APPS.FINANCIALS_SYSTEM_PARAMS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FINANCIALS_SYSTEM_PARAMS_ALL, status:VALID,
-
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,
-
SYNONYM: APPS.RCV_SHIPMENT_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RCV_SHIPMENT_LINES, status:VALID,
-
VIEW: APPS.PO_LOOKUP_CODES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LOOKUP_CODES, object_name:PO_LOOKUP_CODES, status:VALID,
-
SYNONYM: APPS.RCV_TRANSACTIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RCV_TRANSACTIONS, status:VALID,
-
VIEW: APPS.PO_LOOKUP_CODES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LOOKUP_CODES, object_name:PO_LOOKUP_CODES, status:VALID,
-
SYNONYM: APPS.RCV_TRANSACTIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RCV_TRANSACTIONS, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
VIEW: APPS.HR_ORGANIZATION_UNITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORGANIZATION_UNITS, object_name:HR_ORGANIZATION_UNITS, status:VALID,
-
VIEW: APPS.HR_ORGANIZATION_UNITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORGANIZATION_UNITS, object_name:HR_ORGANIZATION_UNITS, status:VALID,
-
PACKAGE BODY: APPS.PO_POXDLPDT_XMLP_PKG
12.1.1
-
PACKAGE BODY: APPS.PO_POXDLPDT_XMLP_PKG
12.2.2
-
SYNONYM: APPS.PER_ALL_PEOPLE_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PER_ALL_PEOPLE_F, status:VALID,
-
SYNONYM: APPS.PER_ALL_PEOPLE_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PER_ALL_PEOPLE_F, status:VALID,
-
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,
-
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 ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.FND_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - PER Tables and Views
12.2.2
description: Table to store NQF Training info for a person ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
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 ,
-
eTRM - PER Tables and Views
12.2.2
description: Table to store NQF Training info for a person ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,