Search Results source_doc_qty
Overview
APPS.ICX_RCV_RETURNS_V is a reporting view owned by the APPS schema and delivered as part of the ICX (Oracle iProcurement) product family. Its documented description is "Returned Item Receipts View," and its purpose is to expose receipt transactions of the return variety in a denormalized, user-friendly form suitable for inquiry pages, self-service receipt correction, and downstream reporting. The view consolidates receiving transaction data with shipment, purchasing, supplier, employee, and organization context so that a single row describes a returned receipt line in business terms rather than raw foreign keys.
In Oracle EBS 12.1.1 and 12.2.2 the view is used primarily by iProcurement's receipt and return flows, where a buyer or requester reviews goods returned to a supplier, to inventory, or to another organization. Because it joins RCV, PO, HR, and MTL constructs, it is also a convenient source for custom reports and for integration extracts that must reconcile returned quantities against receipts. The view is read-only and derives all values from its base objects; it holds no data of its own.
A notable attribute is RECEIPT_EXCEPTION_FLAG, which is projected directly from RCV_TRANSACTIONS. This flag indicates whether the return transaction is in an exception state and is a frequent filter for users who need to isolate problem receipts from clean ones.
Underlying Base Objects
The view is defined over the following documented base objects:
- RCV_TRANSACTIONS — the primary driving table, supplying transaction identity, type, date, quantity, UOM, destination type, inspection status, reason, comments, RMA reference, vendor lot number, and
RECEIPT_EXCEPTION_FLAG. - RCV_SHIPMENT_HEADERS and RCV_SHIPMENT_LINES — supply receipt number, shipment number, packing slip, bill of lading, freight carrier, source code, item identifiers, and item description.
- PO_HEADERS, PO_LINES, PO_LINE_LOCATIONS, PO_RELEASES — provide the purchase order number, line, shipment, release, and the source document quantity used for comparison.
- PO_VENDORS, PO_VENDOR_SITES — supply supplier name, supplier identifier, and supplier site code.
- HR_EMPLOYEES, HR_LOCATIONS, HR_PERSON_NAME, HR_GENERAL, HR_SECURITY — resolve receiver names, ship-to locations, and enforce HR security on person and location data.
- ORG_ORGANIZATION_DEFINITIONS, MTL_SYSTEM_ITEMS_KFV, MTL_TRANSACTION_REASONS — provide organization, item key flexfield, and return reason information.
- ICX_PO_RCV_QTY — a package whose
GET_NET_QTYfunction computes the net primary quantity for the transaction, accounting for prior activity. - FND_GLOBAL, FND_PROFILE, FINANCIALS_SYSTEM_PARAMETERS — supply session and profile context used in the view's expressions.
The view therefore joins transactional receiving data to its purchasing and human-resources context, applying the iProcurement quantity helper to derive net quantities.
Key Columns
- TRANSACTION_ID, PARENT_TRANSACTION_ID, TRANSACTION_TYPE, TRANSACTION_DATE — identity and classification of the return transaction.
- TRANSACT_QTY, TRANSACT_UOM, PRIMARY_QUANTITY, PRIMARY_UOM, NET_PRIMARY_QUANTITY — returned quantity in transaction and primary units, with the net figure computed via
ICX_PO_RCV_QTY.GET_NET_QTY. - ITEM_ID, ITEM_REV, ITEM_DESC, VENDOR_ITEM_NUM — item identification on the shipment line.
- DESTINATION_TYPE — INVENTORY, WIP, or EXPENSE.
- PO_HEADER_ID, PO_LINE_ID, PO_LINE_LOCATION_ID, PO_DISTRIBUTION_ID, PO_RELEASE_ID — purchasing document references.
- SUPPLIER_ID, SUPPLIER, VENDOR_ID, VENDOR_NAME, SUPPLIER_SITE_ID, SUPPLIER_SITE — supplier derivation, decoded from source document code.
- RECEIVER, SHIP_TO_LOCATION, SHIP_TO_LOCATION_DESC — employee and location context.
- INSPECTION_STATUS_CODE, REASON_ID, COMMENTS, VENDOR_LOT_NUM, RMA_REFERENCE — quality and disposition attributes.
- RECEIPT_EXCEPTION_FLAG — exception indicator for the return transaction.
- RECEIPT_NUM, SHIPMENT_NUM, RECEIPT_DATE, PO_NUM, PO_LINE, PO_SHIPMENT — human-readable receipt and PO identifiers.
Common Use Cases and Queries
Typical scenarios include reviewing returned receipts for a supplier, reconciling net returned quantities against received quantities, and identifying receipts flagged with exceptions.
SELECT receipt_num, po_num, supplier, item_desc, transact_qty,
primary_uom, transaction_date, receipt_exception_flag
FROM apps.icx_rcv_returns_v
WHERE receipt_exception_flag = 'Y'
ORDER BY transaction_date DESC;
The view can also be filtered by supplier or item to support return analysis and by organization to scope results to a specific inventory organization. Because it exposes purchasing and HR-derived columns, it is well suited to ad hoc reporting and to extracts that feed exception dashboards in both 12.1.1 and 12.2.2.
-
View: ICX_RCV_RETURNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RCV_RETURNS_V, object_name:ICX_RCV_RETURNS_V, status:VALID, product: ICX - Oracle iProcurement , description: Returned Item Receipts View , implementation_dba_data: APPS.ICX_RCV_RETURNS_V ,
-
View: ICX_RCV_EARLY_LATE_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RCV_EARLY_LATE_RECEIPTS_V, object_name:ICX_RCV_EARLY_LATE_RECEIPTS_V, status:VALID, product: ICX - Oracle iProcurement , description: Supplier Performance View based on On-Time Delivery Performance , implementation_dba_data: APPS.ICX_RCV_EARLY_LATE_RECEIPTS_V ,
-
View: ICX_RCV_RETURNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RCV_RETURNS_V, object_name:ICX_RCV_RETURNS_V, status:VALID, product: ICX - Oracle iProcurement , description: Returned Item Receipts View , implementation_dba_data: APPS.ICX_RCV_RETURNS_V ,
-
View: ICX_RCV_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RCV_TRANSACTIONS_V, object_name:ICX_RCV_TRANSACTIONS_V, status:VALID, product: ICX - Oracle iProcurement , description: Receipt Lines View , implementation_dba_data: APPS.ICX_RCV_TRANSACTIONS_V ,
-
View: ICX_RCV_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RCV_TRANSACTIONS_V, object_name:ICX_RCV_TRANSACTIONS_V, status:VALID, product: ICX - Oracle iProcurement , description: Receipt Lines View , implementation_dba_data: APPS.ICX_RCV_TRANSACTIONS_V ,
-
View: ICX_RCV_EARLY_LATE_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RCV_EARLY_LATE_RECEIPTS_V, object_name:ICX_RCV_EARLY_LATE_RECEIPTS_V, status:VALID, product: ICX - Oracle iProcurement , description: Supplier Performance View based on On-Time Delivery Performance , implementation_dba_data: APPS.ICX_RCV_EARLY_LATE_RECEIPTS_V ,
-
View: ICX_RCV_REJECTED_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RCV_REJECTED_ITEMS_V, object_name:ICX_RCV_REJECTED_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Supplier Performance View based on Rejected Items , implementation_dba_data: APPS.ICX_RCV_REJECTED_ITEMS_V ,
-
View: ICX_RCV_REJECTED_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RCV_REJECTED_ITEMS_V, object_name:ICX_RCV_REJECTED_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Supplier Performance View based on Rejected Items , implementation_dba_data: APPS.ICX_RCV_REJECTED_ITEMS_V ,
-
View: ICX_RCV_ACCEPTED_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RCV_ACCEPTED_ITEMS_V, object_name:ICX_RCV_ACCEPTED_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: APPS.ICX_RCV_ACCEPTED_ITEMS_V ,
-
View: ICX_RCV_ACCEPTED_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_RCV_ACCEPTED_ITEMS_V, object_name:ICX_RCV_ACCEPTED_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: APPS.ICX_RCV_ACCEPTED_ITEMS_V ,