Search Results ship_unspecified_action_flag




Overview

APPS.WSH_SHIP_CONFIRM_RULES_V is an internal Oracle E-Business Suite view owned by the APPS schema and registered under FND Design Data as WSH.WSH_SHIP_CONFIRM_RULES_V. It belongs to the Oracle Shipping Execution (WSH) product family and presents ship confirmation rules — the configurable business rules that determine how shipment confirmations are processed, staged, interfaced, and documented. The view has a status of VALID and is classified in the ETRM repository as an internal view.

The view exposes a denormalized, reporting-friendly projection of ship confirmation rule definitions. Rather than requiring callers to resolve code values against lookups directly, it surfaces descriptive attributes alongside coded flags, including the resolved shipment method name. This makes it particularly suitable for reconciliation and diagnostic queries. Oracle explicitly marks the object as Oracle Internal Use Only, meaning direct access is unsupported except through standard Oracle Applications programs; the view is nonetheless widely referenced in ad hoc diagnostics because of its readable column set.

Underlying Base Objects

According to the documented ETRM metadata, WSH_SHIP_CONFIRM_RULES_V references the following objects:

The view therefore functions as a join layer: the base rule record from WSH_SHIP_CONFIRM_RULES is enriched with lookup-derived display values and report set metadata, producing a single row per effective ship confirmation rule.

Key Columns

Common Use Cases and Queries

Typical uses include auditing active ship confirmation rules, verifying which shipment method a rule defaults to, and tracing document set and 945 interface behavior. A common query filters on the search term ship_method_name:

  • SELECT ship_confirm_rule_id, name, ship_method_name, ship_method_code, effective_start_date, effective_end_date FROM apps.wsh_ship_confirm_rules_v WHERE ship_method_name LIKE '&method%' ORDER BY name;
  • SELECT name, ship_method_name, action_flag, send_945_flag, document_set_name FROM apps.wsh_ship_confirm_rules_v WHERE SYSDATE BETWEEN effective_start_date AND NVL(effective_end_date, SYSDATE + 1);

Because access is documented as internal only, such queries should be confined to diagnostics and reporting, not custom application logic.