Search Results req_line
Overview
APPS.RCV_ENTER_RECEIPTS_V is a consolidated, read-only database view that presents the complete set of receipt entry candidates available to the Oracle E-Business Suite Receiving application. It serves as the single reporting and integration surface behind the Enter Receipts form, unifying purchase order receipts, internal requisitions, inventory (inter-org) receipts, RMA returns, and advance ship notice (ASN) sources into one homogeneous row structure. In Oracle EBS 12.1.1 and 12.2.2, the view is owned by the APPS schema and is used both by the Receiving forms UI and by external integrations, reporting tools, and APIs that need to identify pending receipt lines before a receipt is actually created and saved to the RCV_TRANSACTIONS and RCV_SHIPMENT_HEADERS tables.
The view is the primary lookup for the rcv_shipment_header_id value—the surrogate key that identifies the shipment header associated with a receipt row. Because receipt headers are only assigned when a receipt is saved, the view exposes this identifier for rows that already carry an in-transit shipment (typically ASN and pre-generated receipts), while rows awaiting first-time receipt carry a null shipment header id until the transaction is committed.
Underlying Base Objects
The view is defined over a UNION ALL of five constituent views, each of which supplies a distinct receipt source:
- RCV_ENTER_RECEIPTS_PO_V — purchase order and blanket release receipt lines.
- RCV_ENTER_RECEIPTS_INT_REQ_V — internal requisition receipts.
- RCV_ENTER_RECEIPTS_INVENTORY_V — inventory and inter-organization receipts.
- RCV_ENTER_RECEIPTS_RMA_V — return material authorization (RMA) receipts.
- RCV_ENTER_RECEIPTS_ASN_V — advance ship notice receipts.
Supporting package references documented in the metadata include HR_GENERAL and HR_SECURITY (for operating unit and security profile filtering), OE_SYS_PARAMETERS (for order management profile options), and PO_CLM_INTG_GRP (for procurement contract integration). The union structure explains why the same logical row can carry PO, requisition, or order attributes in different columns; only the subset relevant to the source is populated for any given row.
Key Columns
The most commercially significant columns are the shipment anchors and their linked purchase order context:
- RCV_SHIPMENT_HEADER_ID — surrogate key of the receipt shipment header; null until the receipt is saved. This is the column most frequently referenced in queries and is the join target to RCV_SHIPMENT_HEADERS.
- RCV_SHIPMENT_LINE_ID / RCV_LINE_NUMBER — the shipment line and its display number.
- PO_HEADER_ID, PO_LINE_ID, PO_LINE_LOCATION_ID, PO_RELEASE_ID — purchase order document keys, with PO_NUMBER, PO_LINE_NUMBER, PO_SHIPMENT_NUMBER, and PO_RELEASE_NUMBER as display counterparts.
- REQ_HEADER_ID, REQ_LINE_ID, REQ_DISTRIBUTION_ID — internal requisition keys.
- OE_ORDER_HEADER_ID, OE_ORDER_LINE_ID, CUSTOMER_ID — sales order and customer context for RMA rows.
- ITEM_ID, ITEM_NUMBER, ITEM_DESCRIPTION, PRIMARY_UOM, VENDOR_ITEM_NUMBER — item identity.
- ORDERED_QTY, UNIT_PRICE, CURRENCY_CODE — quantity and pricing.
- VENDOR_ID, VENDOR_SITE_ID, SHIP_TO_LOCATION_ID, DESTINATION_SUBINVENTORY — sourcing and destination.
- ASN_TYPE, BILL_OF_LADING, SHIPPED_DATE, FREIGHT_CARRIER_CODE, WAYBILL_AIRBILL_NUM — shipping and ASN detail.
- SOURCE_TYPE_CODE, RECEIPT_SOURCE_CODE, ORDER_TYPE_CODE, CLOSED_CODE — control and status flags.
Common Use Cases and Queries
Typical usage resolves pending receipts for a PO, traces shipment headers for ASN-based receipts, and feeds downstream integrations. Sample statements:
- Find receipt-ready lines for a purchase order:
SELECT po_number, po_line_number, item_number, ordered_qty,
rcv_shipment_header_id, closed_code
FROM apps.rcv_enter_receipts_v
WHERE po_number = '12345'
AND closed_code = 'OPEN';
- Identify ASN rows that already carry a shipment header:
SELECT rcv_shipment_header_id, rcv_shipment_number,
asn_type, ship_to_location, ordered_qty
FROM apps.rcv_enter_receipts_v
WHERE rcv_shipment_header_id IS NOT NULL
AND source_type_code = 'ASN';
- Reconcile requisition and inventory receipts destined to a subinventory:
SELECT req_number, to_organization_id, destination_subinventory,
item_number, ordered_qty
FROM apps.rcv_enter_receipts_v
WHERE req_number IS NOT NULL
AND destination_subinventory = 'STORES';
Because the view is a union over five source-specific views, queries should filter on ORDER_TYPE_CODE, RECEIPT_SOURCE_CODE, or SOURCE_TYPE_CODE to avoid returning irrelevant rows and to improve execution plans. The rcv_shipment_header_id is generally not unique per row across all sources, so joins should be qualified by shipment line or PO context.
-
VIEW: APPS.RCV_ENTER_RECEIPTS_V
12.1.1
-
VIEW: APPS.RCV_ENTER_RECEIPTS_SUP_INT_V
12.2.2
-
VIEW: APPS.INL_ENTER_RECEIPTS_V
12.1.1
-
VIEW: APPS.RCV_ENTER_RECEIPTS_V
12.2.2
-
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 ,
-
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_SUPPLIER_V
12.2.2
-
VIEW: APPS.RCV_ENTER_RECEIPTS_SUPPLIER_V
12.1.1
-
VIEW: APPS.RCV_ENTER_RECEIPTS_INTERNAL_V
12.2.2
-
VIEW: APPS.RCV_ENTER_RECEIPTS_SUP_INT_V
12.1.1
-
VIEW: APPS.RCV_ENTER_RECEIPTS_INTERNAL_V
12.1.1
-
View: RCV_ENTER_RECEIPTS_SUPPLIER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_SUPPLIER_V, object_name:RCV_ENTER_RECEIPTS_SUPPLIER_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_SUPPLIER_V ,
-
View: RCV_ENTER_RECEIPTS_SUPPLIER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_SUPPLIER_V, object_name:RCV_ENTER_RECEIPTS_SUPPLIER_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_SUPPLIER_V ,
-
VIEW: APPS.PA_PROJ_REQ_DISTRIBUTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_REQ_DISTRIBUTIONS_V, object_name:PA_PROJ_REQ_DISTRIBUTIONS_V, 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: RCV_ENTER_RECEIPTS_RMA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_RMA_V, object_name:RCV_ENTER_RECEIPTS_RMA_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_RMA_V ,
-
TABLE: PA.PA_PJM_REQ_COMMITMENTS_TMP
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PJM_REQ_COMMITMENTS_TMP, object_name:PA_PJM_REQ_COMMITMENTS_TMP, status:VALID,
-
TABLE: PA.PA_PJM_REQ_COMMITMENTS_TMP
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PJM_REQ_COMMITMENTS_TMP, object_name:PA_PJM_REQ_COMMITMENTS_TMP, status:VALID,
-
VIEW: APPS.RCV_ENTER_RECEIPTS_RMA_V
12.1.1
-
View: RCV_ENTER_RECEIPTS_RMA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_RMA_V, object_name:RCV_ENTER_RECEIPTS_RMA_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_RMA_V ,
-
VIEW: APPS.RCV_ENTER_RECEIPTS_RMA_V
12.2.2
-
View: PA_PROJ_PEND_REQ_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_PEND_REQ_DISTRIBUTIONS, object_name:PA_PROJ_PEND_REQ_DISTRIBUTIONS, status:VALID, product: PA - Projects , description: Shows project related unapproved, unpurchased requisition distributions , implementation_dba_data: APPS.PA_PROJ_PEND_REQ_DISTRIBUTIONS ,
-
VIEW: APPS.PA_PROJ_REQ_DISTRIBUTIONS_V1
12.2.2
owner:APPS, object_type:VIEW, object_name:PA_PROJ_REQ_DISTRIBUTIONS_V1, status:VALID,
-
VIEW: APPS.PA_PROJ_PEND_REQ_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_PEND_REQ_DISTRIBUTIONS, object_name:PA_PROJ_PEND_REQ_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.PA_PROJ_APPR_REQ_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_APPR_REQ_DISTRIBUTIONS, object_name:PA_PROJ_APPR_REQ_DISTRIBUTIONS, status:VALID,
-
View: PA_PROJ_APPR_REQ_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_APPR_REQ_DISTRIBUTIONS, object_name:PA_PROJ_APPR_REQ_DISTRIBUTIONS, status:VALID, product: PA - Projects , description: Shows all approved and unpurchased requisition distributions, which are project related. , implementation_dba_data: APPS.PA_PROJ_APPR_REQ_DISTRIBUTIONS ,
-
View: PA_PROJ_PEND_REQ_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_PEND_REQ_DISTRIBUTIONS, object_name:PA_PROJ_PEND_REQ_DISTRIBUTIONS, status:VALID, product: PA - Projects , description: Shows project related unapproved, unpurchased requisition distributions , implementation_dba_data: APPS.PA_PROJ_PEND_REQ_DISTRIBUTIONS ,
-
View: PA_PROJ_APPR_REQ_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_APPR_REQ_DISTRIBUTIONS, object_name:PA_PROJ_APPR_REQ_DISTRIBUTIONS, status:VALID, product: PA - Projects , description: Shows all approved and unpurchased requisition distributions, which are project related. , implementation_dba_data: APPS.PA_PROJ_APPR_REQ_DISTRIBUTIONS ,
-
VIEW: APPS.PJM_REQ_COMMITMENTS_STUB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_REQ_COMMITMENTS_STUB_V, object_name:PJM_REQ_COMMITMENTS_STUB_V, status:VALID,
-
VIEW: APPS.PA_PROJ_PEND_REQ_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_PEND_REQ_DISTRIBUTIONS, object_name:PA_PROJ_PEND_REQ_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.PA_PROJ_APPR_REQ_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_APPR_REQ_DISTRIBUTIONS, object_name:PA_PROJ_APPR_REQ_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.IGC_CBC_PO_PROCESS_EXCEPTION_V
12.1.1
-
View: PJM_REQ_COMMITMENTS_STUB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_REQ_COMMITMENTS_STUB_V, object_name:PJM_REQ_COMMITMENTS_STUB_V, status:VALID, product: PJM - Project Manufacturing , description: Project-related purchase requisition distributions view for non-project manufacturing customers , implementation_dba_data: APPS.PJM_REQ_COMMITMENTS_STUB_V ,
-
VIEW: APPS.PJM_REQ_COMMITMENTS_STUB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_REQ_COMMITMENTS_STUB_V, object_name:PJM_REQ_COMMITMENTS_STUB_V, status:VALID,
-
VIEW: APPS.PA_PROJ_REQ_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_REQ_DISTRIBUTIONS, object_name:PA_PROJ_REQ_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.IGC_CBC_PO_PROCESS_EXCEPTION_V
12.2.2
-
View: PJM_REQ_COMMITMENTS_STUB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_REQ_COMMITMENTS_STUB_V, object_name:PJM_REQ_COMMITMENTS_STUB_V, status:VALID, product: PJM - Project Manufacturing , description: Project-related purchase requisition distributions view for non-project manufacturing customers , implementation_dba_data: APPS.PJM_REQ_COMMITMENTS_STUB_V ,
-
VIEW: APPS.PA_PROJ_REQ_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_REQ_DISTRIBUTIONS, object_name:PA_PROJ_REQ_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.RCV_CONFIRM_RECEIPT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_CONFIRM_RECEIPT_V, object_name:RCV_CONFIRM_RECEIPT_V, status:VALID,
-
VIEW: APPS.INL_ENTER_RECEIPTS_PO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ENTER_RECEIPTS_PO_V, object_name:INL_ENTER_RECEIPTS_PO_V, status:VALID,
-
VIEW: APPS.PJM_REQ_COMMITMENTS_BASIC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_REQ_COMMITMENTS_BASIC_V, object_name:PJM_REQ_COMMITMENTS_BASIC_V, status:VALID,
-
VIEW: APPS.INL_IR_SOURCE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_IR_SOURCE_LINES_V, object_name:INL_IR_SOURCE_LINES_V, status:VALID,
-
VIEW: APPS.PJM_REQ_COMMITMENTS_BASIC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_REQ_COMMITMENTS_BASIC_V, object_name:PJM_REQ_COMMITMENTS_BASIC_V, status:VALID,
-
VIEW: APPS.RCV_CONFIRM_RECEIPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_CONFIRM_RECEIPT_V, object_name:RCV_CONFIRM_RECEIPT_V, status:VALID,
-
VIEW: APPS.INL_PO_SOURCE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_PO_SOURCE_LINES_V, object_name:INL_PO_SOURCE_LINES_V, status:VALID,
-
VIEW: APPS.INL_RMA_SOURCE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_RMA_SOURCE_LINES_V, object_name:INL_RMA_SOURCE_LINES_V, status:VALID,