Search Results transaction_type_dsp
Overview
APPS.POR_RCV_RETURN_TO_VENDOR_V is a reporting view within Oracle E-Business Suite (validated on 12.1.1 and 12.2.2) owned by the APPS schema and catalogued under the ICX – Oracle iProcurement product group. Its documented purpose is to present receipt transactions that represent items being returned to a supplier (vendor), consolidating receiving, purchasing, and inventory attributes into a single denormalized result set. In practice the view is consumed by iProcurement return-to-vendor flows, RCV (Receiving) self-service pages, and downstream reporting or integration layers that need a purpose-built projection of returnable receipt lines rather than the raw RCV_TRANSACTIONS table.
The view can be used to identify which receipt quantities remain eligible for return and to retrieve the full documentary context of the originating order, requisition, and shipment. Users searching for a shelf_days column will not find it here; shelf-life calculations are not part of this view's definition. Shelf-life days typically derive from MTL_SYSTEM_ITEMS_B.SHELF_LIFE_CODE and MTL_ITEM_LOCATIONS/lot attributes, so any shelf-day logic must be added by joining to those objects rather than queried directly from POR_RCV_RETURN_TO_VENDOR_V.
Underlying Base Objects
The view is defined over a join of receiving, purchasing, inventory, and HR objects. Documented referenced base objects include:
- Receiving:
RCV_TRANSACTIONS(the driving aliasRT),RCV_SHIPMENT_HEADERS(RSH),RCV_SHIPMENT_LINES(RSL), andRCV_ROUTING_HEADERS. - Purchasing:
PO_HEADERS,PO_RELEASES,PO_REQUISITION_HEADERS(PRH),PO_REQUISITION_LINES(PRL), and the transaction viewsPO_LINES_TRX_V,PO_LINE_LOCATIONS_TRX_V, andPO_DISTRIBUTIONS_TRX_V. - Inventory:
MTL_SYSTEM_ITEMS(MSI),MTL_UNITS_OF_MEASURE,MTL_TRANSACTION_REASONS. - Reference/security:
ORG_ORGANIZATION_DEFINITIONS,PO_LOOKUP_CODES(PLC1),PO_VENDORS,PER_PEOPLE_F,HR_LOCATIONS_ALL, and the PL/SQL packagesFND_GLOBAL,HR_GENERAL,HR_PERSON_NAME,HR_SECURITY,PO_CLM_INTG_GRP. - Server-side logic: the view calls
POR_RCV_TRANSACTION_SV.GET_NET_DELIVERED_QTY(RT.TRANSACTION_ID)to compute net delivered quantity dynamically.
Because it depends on HR security and MO/operating-unit views, query results can be filtered implicitly by the responsibility's organization and personnel security profile.
Key Columns
TRANSACTION_ID,PARENT_TRANSACTION_ID,TRANSACTION_TYPE,TRANSACTION_DATE– identity and nature of the receipt/return transaction.QUANTITY– the transaction quantity; combined with the net-delivered function it establishes returnable balances.PO_HEADER_ID,PO_LINE_ID,PO_LINE_LOCATION_ID,PO_DISTRIBUTION_ID,PO_RELEASE_ID,PO_REVISION_NUM– purchasing document context.SHIPMENT_HEADER_ID,SHIPMENT_LINE_ID,RECEIPT_NUM,SHIPMENT_NUM,LINE_NUM,PACKING_SLIP– receipt identity.VENDOR_ID,VENDOR_SITE_ID– supplier being returned to.ITEM_ID,ITEM_DESCRIPTION,CATEGORY_ID,ITEM_REVISION– item detail, plusSERIAL_NUMBER_CC,LOT_CONTROL_CODE,REVISION_QTY_CONTROL_CODE,ALLOWED_UNITS_LOOKUP_CODEfor control rules.ORGANIZATION_ID,SUBINVENTORY,LOCATOR_ID,LOCATION_ID,DELIVER_TO_LOCATION_ID,DELIVER_TO_PERSON_ID– physical and organizational placement.UNIT_OF_MEASURE,PRIMARY_UNIT_OF_MEASURE,SOURCE_DOC_UNIT_OF_MEASURE,PO_UNIT_PRICE,CURRENCY_CODEand conversion columns – quantity/pricing context.REASON_ID,COMMENTS,INSPECTION_STATUS_CODE,RECEIPT_EXCEPTION_FLAG,VENDOR_LOT_NUM, andATTRIBUTE1–ATTRIBUTE15– return reason, DFFs, and status.
Common Use Cases and Queries
Typical scenarios include building a list of returnable receipt lines in iProcurement, deriving remaining returnable quantity, and reconciling returns against purchase orders. A representative query follows:
SELECT transaction_id, receipt_num, line_num, item_description, quantity, vendor_id, po_header_id, organization_id, transaction_date FROM apps.por_rcv_return_to_vendor_v WHERE vendor_id = :p_vendor_id AND organization_id = :p_org ORDER BY transaction_date DESC;- To reconcile against the order:
SELECT v.quantity, v.quantity_ordered, v.po_unit_price, v.currency_code FROM apps.por_rcv_return_to_vendor_v v WHERE v.po_line_location_id = :p_line_location_id;
Where shelf life is required, join the view to MTL_SYSTEM_ITEMS_B and lot/serial attributes; the view itself exposes no shelf-day measure. Always constrain by organization and, where RLS applies, rely on the embedded HR security packages to limit results.
-
View: POR_RCV_RETURN_TO_VENDOR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_RETURN_TO_VENDOR_V, object_name:POR_RCV_RETURN_TO_VENDOR_V, status:VALID, product: ICX - Oracle iProcurement , description: View for querying items to be returned to the supplier (vendor) , implementation_dba_data: APPS.POR_RCV_RETURN_TO_VENDOR_V ,
-
View: POR_RCV_RETURN_TO_VENDOR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_RETURN_TO_VENDOR_V, object_name:POR_RCV_RETURN_TO_VENDOR_V, status:VALID, product: ICX - Oracle iProcurement , description: View for querying items to be returned to the supplier (vendor) , implementation_dba_data: APPS.POR_RCV_RETURN_TO_VENDOR_V ,
-
View: POR_RCV_CORRECT_RTV_V
12.2.2
product: ICX - Oracle iProcurement , description: View for querying items which need to be returned to the supplier(vendor) and the receipts to be corrected or adjusted , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_CORRECT_RTV_V
12.1.1
product: ICX - Oracle iProcurement , description: View for querying items which need to be returned to the supplier(vendor) and the receipts to be corrected or adjusted , implementation_dba_data: Not implemented in this database ,
-
View: RCV_VIEW_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VIEW_INTERFACE_V, object_name:RCV_VIEW_INTERFACE_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_VIEW_INTERFACE_V ,
-
View: RCV_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_TRANSACTIONS_V, object_name:RCV_TRANSACTIONS_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_TRANSACTIONS_V ,
-
VIEW: APPS.POR_RCV_RETURN_TO_VENDOR_V
12.1.1
-
VIEW: APPS.RCV_VIEW_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VIEW_INTERFACE_V, object_name:RCV_VIEW_INTERFACE_V, status:VALID,
-
View: RCV_VIEW_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VIEW_INTERFACE_V, object_name:RCV_VIEW_INTERFACE_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_VIEW_INTERFACE_V ,
-
VIEW: APPS.RCV_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_TRANSACTIONS_V, object_name:RCV_TRANSACTIONS_V, status:VALID,
-
VIEW: APPS.RCV_VIEW_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VIEW_INTERFACE_V, object_name:RCV_VIEW_INTERFACE_V, status:VALID,
-
View: RCV_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_TRANSACTIONS_V, object_name:RCV_TRANSACTIONS_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_TRANSACTIONS_V ,
-
VIEW: APPS.POR_RCV_RETURN_TO_VENDOR_V
12.2.2
-
VIEW: APPS.POR_RCV_RETURN_TO_VENDOR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_RETURN_TO_VENDOR_V, object_name:POR_RCV_RETURN_TO_VENDOR_V, status:VALID,
-
VIEW: APPS.RCV_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_TRANSACTIONS_V, object_name:RCV_TRANSACTIONS_V, status:VALID,
-
VIEW: APPS.POR_RCV_RETURN_TO_VENDOR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_RETURN_TO_VENDOR_V, object_name:POR_RCV_RETURN_TO_VENDOR_V, status:VALID,
-
VIEW: APPS.RCV_VIEW_INTERFACE_V
12.1.1
-
VIEW: APPS.RCV_TRANSACTIONS_V
12.1.1
-
VIEW: APPS.RCV_VIEW_INTERFACE_V
12.2.2
-
VIEW: APPS.RCV_TRANSACTIONS_V
12.2.2
-
eTRM - ICX Tables and Views
12.2.2
-
eTRM - ICX Tables and Views
12.1.1
-
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 ,