Search Results ship_to_location
Overview
RCV_MSH_V is a Purchasing (PO) module view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. The ETRM description identifies it plainly as "10SC ONLY - Retrofitted," meaning it is not part of the standard Oracle Receiving flow delivered to conventional implementations but rather a retrofitted object introduced for the 10SC (Government/Public Sector) configuration. Its name derives from the base table RCV_SHIPMENT_HEADERS, and the view is designed to present shipment header information in a denormalized, report-friendly form.
The view consolidates shipment header attributes with descriptive lookup values pulled from organization and HR location definitions, so that a consumer does not need to re-join those reference tables. It acts as a reporting and integration surface over the receiving shipment headers, particularly for the receipt sources "INVENTORY" and "INTERNAL ORDER," for which the ship-to location and ship-to organization naming must be resolved for human-readable output.
Underlying Base Objects
The documented base objects for RCV_MSH_V are RCV_SHIPMENT_HEADERS (synonym, the primary driving table), HR_LOCATIONS_ALL_TL (synonym, joined on SHIP_TO_LOCATION_ID with language equal to the user's session language), ORG_ORGANIZATION_DEFINITIONS (view, outer-joined on ORGANIZATION_ID), PO_VENDORS (view), PO_VENDOR_SITES (view), and RCV_SHIPMENT_LINES (synonym), together with the packages FND_GLOBAL, HR_GENERAL, HR_SECURITY, and the synonym RCV_TRANSACTIONS_INTERFACE. The view text shown is a UNION ALL: the first block selects shipments with RECEIPT_SOURCE_CODE in ('INVENTORY', 'INTERNAL ORDER') and returns organization names and HR location codes; the second block supplies vendor name and vendor site code from PO_VENDORS and PO_VENDOR_SITES for the remaining source types. This UNION structure is the defining architectural characteristic of the view. Note that the ETRM listing places RCV_TRANSACTIONS_INTERFACE among referenced objects, which is typically required for the location validation or security sub-routines implicit in HR_SECURITY and FND_GLOBAL.
Key Columns
- ROW_ID – the ROWID of the underlying RCV_SHIPMENT_HEADERS row.
- SHIPMENT_HEADER_ID – primary key linking back to the shipment header.
- RECEIPT_NUM, SHIPMENT_NUM, RECEIPT_SOURCE_CODE – the receipt identity and the source classification that drives the UNION branches.
- SHIP_TO_LOCATION – the human-readable location code sourced from HR.LOCATION_CODE; this is the column users identify when searching on "ship_to_location."
- SHIP_TO_LOCATION_ID, SHIP_TO_ORG_ID – the numeric identifiers behind the descriptive values.
- FROM_ORGANIZATION_NAME, FROM_ORGANIZATION_ID – the shipping organization, resolved via ORG_ORGANIZATION_DEFINITIONS.
- VENDOR_NAME, VENDOR_SITE_CODE – supplier descriptors populated in the vendor-source branch of the UNION.
- Waybill, ASN, carrier, packing and date columns – BILL_OF_LADING, WAYBILL_AIRBILL_NUM, ASN_TYPE, FREIGHT_CARRIER_CODE, EXPECTED_RECEIPT_DATE, SHIPPED_DATE, NUM_OF_CONTAINERS, PACKING_SLIP.
- Attributes 1–15 and the WHO columns – standard DFF and audit columns carried through unchanged.
Common Use Cases and Queries
The primary use case is resolving a shipment header to its ship-to location code and ship-to organization for reporting. A typical query joins the view to receipt lines or filters by receipt number:
- Locating receipts by destination:
SELECT receipt_num, shipment_num, ship_to_location, from_organization_name FROM apps.rcv_msh_v WHERE ship_to_location = :p_location; - Internal/inventory shipments:
SELECT shipment_header_id, receipt_num, from_organization_name FROM apps.rcv_msh_v WHERE receipt_source_code IN ('INVENTORY','INTERNAL ORDER'); - Vendor receipts:
SELECT receipt_num, vendor_name, vendor_site_code, bill_of_lading FROM apps.rcv_msh_v WHERE receipt_source_code NOT IN ('INVENTORY','INTERNAL ORDER');
Because the view already joins the location and organization references, it is convenient for ad-hoc inquiry and for feeding downstream interfaces. Queries must nevertheless account for the UNION semantics: organization and vendor columns are not populated simultaneously, so predicates on those columns should be aligned with the appropriate receipt source to avoid filtering out rows unexpectedly.
-
View: RCV_MSH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_MSH_V, object_name:RCV_MSH_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_MSH_V ,
-
View: RCV_MSH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_MSH_V, object_name:RCV_MSH_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_MSH_V ,
-
View: POS_RECEIPT_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_RECEIPT_HEADERS_V, object_name:POS_RECEIPT_HEADERS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_RECEIPT_HEADERS_V ,
-
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: POS_RECEIPT_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_RECEIPT_HEADERS_V POS.POS_RECEIPT_HEADERS_V, object_name:POS_RECEIPT_HEADERS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_RECEIPT_HEADERS_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: 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: POS_SHIPMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_SHIPMENTS_V, object_name:POS_SHIPMENTS_V, status:VALID, product: PO - Purchasing , description: Create ASN View , implementation_dba_data: APPS.POS_SHIPMENTS_V ,
-
View: POS_SHIPMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_SHIPMENTS_V POS.POS_SHIPMENTS_V, object_name:POS_SHIPMENTS_V, status:VALID, product: PO - Purchasing , description: Create ASN View , implementation_dba_data: APPS.POS_SHIPMENTS_V ,
-
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_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: 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: 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 ,
-
View: RCV_VRC_HDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_HDS_V, object_name:RCV_VRC_HDS_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_HDS_V ,
-
View: RCV_VRC_HDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_HDS_V, object_name:RCV_VRC_HDS_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_HDS_V ,
-
View: POS_RCV_RETURNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_RCV_RETURNS_V, object_name:POS_RCV_RETURNS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_RCV_RETURNS_V ,
-
View: POS_RCV_RETURNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_RCV_RETURNS_V POS.POS_RCV_RETURNS_V, object_name:POS_RCV_RETURNS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_RCV_RETURNS_V ,
-
View: POS_RCV_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_RCV_TRANSACTIONS_V POS.POS_RCV_TRANSACTIONS_V, object_name:POS_RCV_TRANSACTIONS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_RCV_TRANSACTIONS_V ,
-
View: POS_RCV_EARLY_LATE_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_RCV_EARLY_LATE_RECEIPTS_V POS.POS_RCV_EARLY_LATE_RECEIPTS_V, object_name:POS_RCV_EARLY_LATE_RECEIPTS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_RCV_EARLY_LATE_RECEIPTS_V ,
-
View: POS_RCV_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_RCV_TRANSACTIONS_V, object_name:POS_RCV_TRANSACTIONS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_RCV_TRANSACTIONS_V ,
-
View: POS_RCV_EARLY_LATE_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_RCV_EARLY_LATE_RECEIPTS_V, object_name:POS_RCV_EARLY_LATE_RECEIPTS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_RCV_EARLY_LATE_RECEIPTS_V ,
-
View: POFV_BKT_PO_LINE_PRICE_BREAKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_BKT_PO_LINE_PRICE_BREAKS, object_name:POFV_BKT_PO_LINE_PRICE_BREAKS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_BKT_PO_LINE_PRICE_BREAKS ,
-
View: POFV_BKT_PO_LINE_PRICE_BREAKS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_BKT_PO_LINE_PRICE_BREAKS, object_name:POFV_BKT_PO_LINE_PRICE_BREAKS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_BKT_PO_LINE_PRICE_BREAKS ,
-
View: POS_RCV_REJECTED_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_RCV_REJECTED_ITEMS_V POS.POS_RCV_REJECTED_ITEMS_V, object_name:POS_RCV_REJECTED_ITEMS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_RCV_REJECTED_ITEMS_V ,
-
View: POS_RCV_REJECTED_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_RCV_REJECTED_ITEMS_V, object_name:POS_RCV_REJECTED_ITEMS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_RCV_REJECTED_ITEMS_V ,
-
View: POS_PO_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_SUMMARY_V, object_name:POS_PO_SUMMARY_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_PO_SUMMARY_V ,
-
View: POS_PO_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_SUMMARY_V POS.POS_PO_SUMMARY_V, object_name:POS_PO_SUMMARY_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_PO_SUMMARY_V ,
-
View: POS_PO_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_DETAILS_V, object_name:POS_PO_DETAILS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_PO_DETAILS_V ,
-
View: POS_PO_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_DETAILS_V POS.POS_PO_DETAILS_V, object_name:POS_PO_DETAILS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_PO_DETAILS_V ,
-
View: PO_PURCHASE_ORDER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_PURCHASE_ORDER_V, object_name:PO_PURCHASE_ORDER_V, status:VALID, product: PO - Purchasing , description: Purchase order , implementation_dba_data: APPS.PO_PURCHASE_ORDER_V ,
-
View: PO_PURCHASE_ORDER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_PURCHASE_ORDER_V, object_name:PO_PURCHASE_ORDER_V, status:VALID, product: PO - Purchasing , description: Purchase order , implementation_dba_data: APPS.PO_PURCHASE_ORDER_V ,
-
View: PO_LINE_LOCATIONS_AP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINE_LOCATIONS_AP_V, object_name:PO_LINE_LOCATIONS_AP_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY , implementation_dba_data: APPS.PO_LINE_LOCATIONS_AP_V ,
-
View: PO_LINE_LOCATIONS_AP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINE_LOCATIONS_AP_V, object_name:PO_LINE_LOCATIONS_AP_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY , implementation_dba_data: APPS.PO_LINE_LOCATIONS_AP_V ,
-
View: 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, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_CONFIRM_RECEIPT_V ,
-
View: 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, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_CONFIRM_RECEIPT_V ,
-
View: RCV_VRC_TXS_INT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_INT_V, object_name:RCV_VRC_TXS_INT_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_INT_V ,
-
View: RCV_VRC_TXS_CUST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_CUST_V, object_name:RCV_VRC_TXS_CUST_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_CUST_V ,
-
View: RCV_VRC_TXS_INT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_INT_V, object_name:RCV_VRC_TXS_INT_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_INT_V ,
-
View: RCV_VRC_TXS_VENDINT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_VENDINT_V, object_name:RCV_VRC_TXS_VENDINT_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_VENDINT_V ,
-
View: RCV_VRC_TXS_CUST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_CUST_V, object_name:RCV_VRC_TXS_CUST_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_CUST_V ,
-
View: RCV_VRC_TXS_VENDINT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_VENDINT_V, object_name:RCV_VRC_TXS_VENDINT_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_VENDINT_V ,
-
View: POFV_INBOUND_SHIPMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_INBOUND_SHIPMENTS, object_name:POFV_INBOUND_SHIPMENTS, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POFV_INBOUND_SHIPMENTS ,
-
View: POFV_INBOUND_SHIPMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_INBOUND_SHIPMENTS, object_name:POFV_INBOUND_SHIPMENTS, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POFV_INBOUND_SHIPMENTS ,
-
View: POFV_PLAN_PO_LINE_SHIPMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_PLAN_PO_LINE_SHIPMENTS, object_name:POFV_PLAN_PO_LINE_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_PLAN_PO_LINE_SHIPMENTS ,
-
View: POFV_PLAN_PO_LINE_SHIPMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_PLAN_PO_LINE_SHIPMENTS, object_name:POFV_PLAN_PO_LINE_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_PLAN_PO_LINE_SHIPMENTS ,
-
View: POFV_REQUESTS_FOR_QUOTATION
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_REQUESTS_FOR_QUOTATION, object_name:POFV_REQUESTS_FOR_QUOTATION, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_REQUESTS_FOR_QUOTATION ,
-
View: POFV_REQUESTS_FOR_QUOTATION
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_REQUESTS_FOR_QUOTATION, object_name:POFV_REQUESTS_FOR_QUOTATION, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_REQUESTS_FOR_QUOTATION ,