Search Results wsh_location_id




Overview

QA_ERES_WSH_NEW_DELIVERIES_V is a reporting and integration view owned by the APPS schema in Oracle E-Business Suite, registered and valid in both release 12.1.1 and 12.2.2. It resides within the Quality (QA) product family and is documented as the "shipping delivery electronic record" view. Its function is to consolidate delivery header information from Oracle Shipping Execution into a single, denormalized structure tailored for electronic records management, including electronic signatures and compliance-driven record retention. The view joins the core shipping deliveries view to organization, customer, carrier, ship method, service level, and location references, producing a flattened result set that downstream e-records processes, audits, and warehouse reporting can consume without reproducing the same join logic. Because it exposes only delivery header attributes — not delivery detail lines — it is intended for tracking and identification purposes rather than line-level inventory reconciliation.

Underlying Base Objects

The view is defined over eight documented base objects, all resolved through APPS synonyms or nested views:

All secondary joins use the Oracle outer-join operator (+), so the view returns delivery rows even when lookups, customers, carriers, or locations are unmatched. Language-sensitive joins rely on USERENV('LANG').

Key Columns

Common Use Cases and Queries

Typical usage includes electronic record generation for shipped deliveries, carrier and waybill tracking reports, delivery status monitoring by warehouse, and audit extracts. Because delivery contact telephone numbers are not exposed as native columns, users seeking contact numbers generally read the flexfield attributes or join to customer contact tables. A representative query:

  • SELECT delivery_id, name, status_name, organization_code, customer_name, carrier_name, waybill, attribute1, creation_date FROM apps.qa_eres_wsh_new_deliveries_v WHERE organization_id = :org_id AND creation_date >= :from_date; — supports e-record extracts for a warehouse over a date range, with ATTRIBUTE1 frequently repurposed for contact or tracking reference data.
  • SELECT waybill, carrier_name, ship_method_code_meaning, ultimate_dropoff_date FROM apps.qa_eres_wsh_new_deliveries_v WHERE waybill = :waybill; — retrieves tracking context for a specific shipment.
  • SELECT status_name, COUNT(*) FROM apps.qa_eres_wsh_new_deliveries_v GROUP BY status_name; — summarizes delivery volumes by status for operational dashboards.