Search Results max_size_width




Overview

WSH_CARRIER_SERVICES_V is a shipping execution view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It presents carrier service definitions maintained in the Shipping Execution module, combining the operational attributes of a carrier service with the decoded meaning of its ship method lookup code. The view exists primarily to simplify reporting and integration by resolving the foreign key relationship between WSH_CARRIER_SERVICES.SHIP_METHOD_CODE and the SHIP_METHOD lookup type in FND_LOOKUP_VALUES_VL, exposing the resulting translation as the SHIP_METHOD_MEANING column. This is the attribute most commonly sought by users who search on the term "ship_method_meaning," since the base table stores only the code and not the user-facing description.

Underlying Base Objects

The view is defined over two documented base objects. The first is WSH_CARRIER_SERVICES, referenced through a synonym, which supplies the carrier-service master data including carrier identifiers, service levels, mode of transport, transit-time attributes, and the flexible attribute columns. The second is FND_LOOKUP_VALUES_VL, the multilingual lookup values view, which supplies the translated meaning. The join is performed on three conditions: the lookup type must equal SHIP_METHOD, the lookup code must equal WSH_CARRIER_SERVICES.SHIP_METHOD_CODE, and the view application identifier must equal 3, restricting results to the Oracle Shipping application lookup set. Because the join relies on a lookup constrained to a single type, each carrier service row is enriched with exactly one meaning value, keeping the view effectively one-to-one with its driving table.

Key Columns

The view exposes the full WSH_CARRIER_SERVICES column set plus the derived meaning. Key columns include:

Common Use Cases and Queries

The view is typically used for reporting on carrier services with human-readable ship method descriptions, for validating ship method configuration, and for integration extracts that must supply meaningful labels rather than codes. A representative query lists enabled services with their meanings:

  • SELECT carrier_service_id, carrier_id, ship_method_code, ship_method_meaning FROM wsh_carrier_services_v WHERE enabled_flag = 'Y';
  • SELECT ship_method_meaning, COUNT(*) FROM wsh_carrier_services_v GROUP BY ship_method_meaning;
  • SELECT c.carrier_id, v.ship_method_meaning FROM wsh_carrier_services_v v, wsh_carriers c WHERE v.carrier_id = c.carrier_id;

Because the meaning is resolved through the multilingual lookup view, results respect the session language, making the view suitable for localized reports and interfaces.