Search Results split_from_line_id




Overview

WSH_OPSM_ASN_ITEMS_SPECIFIC_V is an Oracle E-Business Suite dictionary view owned by the APPS schema within the Shipping Execution (WSH) product family. In the context of the Oracle Order Management and Shipping Execution integration — commonly referred to as OPSM (Order Processing and Shipping Management) — the view consolidates order line, schedule, and customer cumulative key information into a single denormalized result set that can be consumed by downstream shipping and Advanced Shipment Notice (ASN) processing logic.

The view is defined with a status of VALID in both EBS 12.1.1 and 12.2.2. Its primary utility is to present order line attributes alongside associated RLM (Release Management) schedule header, schedule line, and cumulative key attributes, projecting an integrated picture of a specific order line for ASN item construction. The view is not a base table; it is a read-only projection over several transactional tables and is typically referenced by OPSM integration code, concurrent programs, or shipping-related queries that need to correlate order management lines with release management scheduling data.

Underlying Base Objects

The documented ETRM metadata for release 12.2.2 identifies five referenced base objects, all resolved through SYNONYM objects in the APPS schema:

The join predicates are largely outer joins (denoted by the (+) syntax), with the exception of the mandatory OE_ORDER_HEADERS_ALL to OE_ORDER_LINES_ALL relationship. The DECODE constructs restrict the RLM joins to lines whose SOURCE_DOCUMENT_TYPE_ID equals 5, ensuring that schedule information is only attached to those order lines that originate from an RLM schedule document.

Key Columns

Common Use Cases and Queries

Because SPLIT_FROM_LINE_ID is exposed directly, this view is frequently queried to trace split line lineage in an ASN or shipping context. A representative query follows:

  • SELECT order_line_id, split_from_line_id, link_to_line_id, order_line_number FROM wsh_opsm_asn_items_specific_v WHERE split_from_line_id IS NOT NULL;
  • SELECT order_header_id, order_line_number, sched_reference_num, cust_po_line_num FROM wsh_opsm_asn_items_specific_v WHERE order_header_id = :p_header_id;
  • SELECT v.order_line_id, v.promise_date, v.unit_selling_price FROM wsh_opsm_asn_items_specific_v v WHERE v.source_code = 'OE' AND v.schedule_reference_num IS NOT NULL;

Typical scenarios include reconciling ASN item lines back to their originating order lines, identifying the parent line of a split shipment, and reporting on pull signal and cumulative key data associated with scheduled releases. Because the RLM joins are outer and conditioned on SOURCE_DOCUMENT_TYPE_ID = 5, consumers must expect NULL values in schedule and cumulative columns for order lines not sourced from an RLM schedule, and should apply appropriate NVL or outer-join semantics in their reporting logic.