Search Results order_by_area_code




Overview

ECE_DSNO_ORDERS_V is a database view historically shipped with the Oracle E-Business Suite e-Commerce Gateway (EC) module. The ETRM metadata for both Oracle EBS 12.1.1 and 12.2.2 classifies this object with the description "No longer used," and the implementation notes state that it is "Not implemented in this database." In other words, although the view was once part of the EC schema, it is a deprecated artifact in the two releases referenced and should not be relied upon for any new development, reporting, or integration work.

Despite its deprecated status, the view definition remains instructive because it documents the intended purpose: exposing a flattened, denormalized order record suitable for e-Commerce Gateway outbound/inbound processing. The naming convention (DSNO) suggests a data source for order-related document generation, while the column aliases map internal Oracle Order Management attributes to friendly, external-facing names used by EDI or XML trading-partner messages. For users who searched for "purchase_order_date," the relevant fact is that the view exposes this value through the column alias PURCHASE_ORDER_DATE, sourced from SOH.DATE_ORDERED.

Underlying Base Objects

The ETRM documentation records no referenced base objects for this view, meaning the standard repository does not enumerate the underlying tables as it typically would. However, the embedded view text reveals the base objects through its SELECT clause. These include:

The view is therefore a join across order, delivery, picking, agreement, order type, and party address data. The exact join predicates are truncated in the provided excerpt, but the DISTINCT keyword indicates the joins can produce duplicates that the view suppresses.

Key Columns

The most pertinent column for the "purchase_order_date" search is PURCHASE_ORDER_DATE, aliased from SOH.DATE_ORDERED. It represents the date the order was placed and is distinct from CUSTOMER_REQUEST_DATE (SOH.DATE_REQUESTED_CURRENT), which captures the customer-requested ship date. Other notable columns include:

Common Use Cases and Queries

Because the view is documented as "No longer used" and "Not implemented," it should not appear in current production queries or integrations. Historically it may have supported e-Commerce Gateway order mapping or reconciliation between Oracle Orders and trading-partner documents. If a legacy query references it, the correct action is to migrate to supported Order Management views such as OE_ORDER_HEADERS_V or purpose-built EC interface tables.

For reference, a query retrieving the purchase order date once looked like:

  • SELECT PURCHASE_ORDER_NUMBER, PURCHASE_ORDER_DATE, SALES_ORDER_NUMBER FROM ECE_DSNO_ORDERS_V WHERE PURCHASE_ORDER_DATE >= :start_date;

In 12.1.1 and 12.2.2 this statement is expected to fail or return no data because the object is not implemented. Consultants should treat ECE_DSNO_ORDERS_V strictly as historical documentation and validate replacement data sources before building any new reporting artifact.