Search Results ship_confirm_document_set_name




Overview

The view APPS.MTL_CLIENT_PARAMETERS_V is a reporting and integration layer over the Oracle E-Business Suite client-level configuration used by the Warehouse Management and shipping execution modules. It presents decoded and denormalized client parameters, joining the underlying parameter table to descriptive values held in related setup tables so that downstream reports, interfaces, and shipping logic can resolve identifiers such as rule names, routing names, and document set names without additional lookups. Within Oracle EBS 12.1.1 and 12.2.2, the view is owned by the APPS schema and is primarily consumed by Shipping Execution, Trading Partner, and Logistics-related processes, including those interfacing with Oracle Transportation Management when the OTM_ENABLED flag is set.

The view is particularly relevant to the search term ship_conf_rule, since it exposes both SHIP_CONFIRM_RULE_ID and the resolved SHIP_CONFIRM_RULE_NAME derived from WSH_SHIP_CONFIRM_RULES. This allows ship confirmation behavior configured per client to be reported and validated in a readable form.

Underlying Base Objects

The view is defined over the following documented base objects:

The view is structured as an inline subquery that joins MTL_CLIENT_PARAMETERS to these lookup objects and then projects the resulting columns with ROWID retained as ROW_ID.

Key Columns

Common Use Cases and Queries

Typical uses include auditing ship confirmation configuration per client, validating LPN numbering setup, and supporting integrations that require human-readable rule and routing names.

  • Retrieve ship confirm rule assignments for all clients.
  • Filter clients where OTM integration is enabled.
  • Review LPN labeling parameters for a specific trading partner.

Sample query:

SELECT client_id, client_name, ship_confirm_rule_name, routing_name, otm_enabled, lpn_prefix, total_lpn_length FROM apps.mtl_client_parameters_v WHERE ship_confirm_rule_name IS NOT NULL;

Sample query filtered by client code:

SELECT client_code, client_name, ship_confirm_rule_id, ship_confirm_rule_name FROM apps.mtl_client_parameters_v WHERE client_code = :p_client_code;