Search Results mtl_client_parameters_v
Overview
MTL_CLIENT_PARAMETERS_V is an Oracle E-Business Suite Inventory (INV) reporting view owned by the APPS schema. It presents client-level receiving and shipping control parameters maintained in the MTL_CLIENT_PARAMETERS table, enriched with descriptive attributes drawn from Oracle Receiving, Oracle Shipping Execution, and Oracle Trading Community Architecture (HZ) tables. The view consolidates configuration data that governs inbound receipt processing, advance ship notice (ASN) behavior, RMA routing, delivery grouping, ship confirmation, and license plate number (LPN) generation for a given client (trading partner).
The view is primarily used for reporting, data extraction, and integration scenarios requiring resolved, human-readable values rather than raw identifiers. While the underlying configuration is stored in MTL_CLIENT_PARAMETERS, the view resolves party names, routing names, ship confirm rule names, and delivery report set names, eliminating the need for downstream join logic. The inclusion of the CLIENT_NUMBER column makes the view a natural reference point for queries searching on client_number, since that identifier appears directly in the view's SELECT list.
Underlying Base Objects
The view is defined over the following documented base objects:
- MTL_CLIENT_PARAMETERS (SYNONYM) — the primary source table, aliased CLIENT_PARAM within the view text, supplying all client parameter columns including CLIENT_NUMBER.
- HZ_PARTIES (SYNONYM) — joined to derive CLIENT_NAME (exposed as PARTIES.PARTY_NAME).
- HZ_CUST_ACCOUNTS (SYNONYM) — referenced in the TCA join path linking the client to its party record.
- RCV_ROUTING_HEADERS (VIEW) — supplies ROUTING_NAME for the RMA_RECEIPT_ROUTING_ID.
- WSH_SHIP_CONFIRM_RULES (SYNONYM) — supplies SHIP_CONFIRM_RULE_NAME via SHIP_CONF_RULE.NAME.
- WSH_REPORT_SETS (SYNONYM) — supplies SHIP_CONFIRM_DOCUMENT_SET_NAME via REPORT_SET.NAME.
Key Columns
- ROW_ID — the physical ROWID of the underlying MTL_CLIENT_PARAMETERS row.
- CLIENT_ID / CLIENT_CODE / CLIENT_NAME / CLIENT_NUMBER — client identification; CLIENT_NUMBER is the user-facing trading partner number and the column most frequently searched.
- TRADING_PARTNER_SITE_ID — the associated trading partner site.
- RECEIPT_ASN_EXISTS_CODE — indicates ASN-based receipt behavior.
- RMA_RECEIPT_ROUTING_ID / ROUTING_NAME — RMA receipt routing and its resolved name.
- GROUP_BY_*_FLAG — grouping flags for customer, freight terms, FOB, and ship method.
- OTM_ENABLED — Oracle Transportation Management integration flag.
- SHIP_CONFIRM_RULE_ID / SHIP_CONFIRM_RULE_NAME — ship confirmation rule.
- AUTOCREATE_DEL_ORDERS_FLAG and DELIVERY_REPORT_SET_ID / SHIP_CONFIRM_DOCUMENT_SET_NAME — delivery order and document set settings.
- LPN_PREFIX, LPN_SUFFIX, UCC_128_SUFFIX_FLAG, TOTAL_LPN_LENGTH, LPN_STARTING_NUMBER — LPN generation parameters.
- ATTRIBUTE_CATEGORY, ATTRIBUTE1–15 — descriptive flexfield columns.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — audit columns.
Common Use Cases and Queries
Typical uses include validating client receiving parameters, auditing ship confirmation configuration, verifying LPN numbering schemes, and feeding integration extracts. A common lookup is retrieval of parameters by client number:
SELECT client_id, client_code, client_name, client_number, ship_confirm_rule_name, lpn_prefix, lpn_suffixFROM apps.mtl_client_parameters_vWHERE client_number = :p_client_number;
Reporting clients with LPN control:
SELECT client_number, client_name, lpn_prefix, total_lpn_lengthFROM apps.mtl_client_parameters_vWHERE lpn_prefix IS NOT NULL;
The view should be treated as read-only configuration reference data; parameter changes are made through the Inventory receiving and shipping setup forms, not directly against the view.
-
View: MTL_CLIENT_PARAMETERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CLIENT_PARAMETERS_V, object_name:MTL_CLIENT_PARAMETERS_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_CLIENT_PARAMETERS_V ,
-
VIEW: APPS.INV_3PL_CLIENTS_V
12.2.2
-
PACKAGE BODY: APPS.WSH_TRIP_VALIDATIONS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_TRIP_VALIDATIONS, status:VALID,
-
View: INV_3PL_CLIENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INV_3PL_CLIENTS_V, object_name:INV_3PL_CLIENTS_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.INV_3PL_CLIENTS_V ,
-
SYNONYM: APPS.WSH_REPORT_SETS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WSH_REPORT_SETS, status:VALID,
-
SYNONYM: APPS.MTL_CLIENT_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_CLIENT_PARAMETERS, status:VALID,
-
VIEW: APPS.INV_3PL_CLIENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INV_3PL_CLIENTS_V, object_name:INV_3PL_CLIENTS_V, status:VALID,
-
SYNONYM: APPS.WSH_SHIP_CONFIRM_RULES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WSH_SHIP_CONFIRM_RULES, status:VALID,
-
PACKAGE BODY: APPS.WSH_EXTERNAL_INTERFACE_SV
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_EXTERNAL_INTERFACE_SV, status:VALID,
-
PACKAGE BODY: APPS.WSH_TRIP_STOPS_VALIDATIONS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_TRIP_STOPS_VALIDATIONS, status:VALID,
-
PACKAGE BODY: APPS.WSH_TRIP_STOPS_ACTIONS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_TRIP_STOPS_ACTIONS, status:VALID,
-
PACKAGE BODY: APPS.WSH_CUST_MERGE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_CUST_MERGE, status:VALID,
-
VIEW: APPS.MTL_CLIENT_ITEMS_VL
12.2.2
-
VIEW: APPS.RCV_ROUTING_HEADERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ROUTING_HEADERS, object_name:RCV_ROUTING_HEADERS, status:VALID,
-
APPS.WSH_EXTERNAL_INTERFACE_SV SQL Statements
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.MTL_CLIENT_PARAMETERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CLIENT_PARAMETERS_V, object_name:MTL_CLIENT_PARAMETERS_V, status:VALID,
-
View: MTL_CLIENT_ITEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CLIENT_ITEMS_VL, object_name:MTL_CLIENT_ITEMS_VL, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_CLIENT_ITEMS_VL ,
-
APPS.WSH_TRIP_STOPS_ACTIONS SQL Statements
12.2.2
-
APPS.WSH_EXTERNAL_INTERFACE_SV dependencies on MTL_CLIENT_PARAMETERS_V
12.2.2
-
APPS.WSH_TRIP_STOPS_VALIDATIONS dependencies on MTL_CLIENT_PARAMETERS_V
12.2.2
-
APPS.WSH_TRIP_VALIDATIONS SQL Statements
12.2.2
-
APPS.WSH_TRIP_VALIDATIONS dependencies on MTL_CLIENT_PARAMETERS_V
12.2.2
-
APPS.WSH_TRIP_STOPS_ACTIONS dependencies on MTL_CLIENT_PARAMETERS_V
12.2.2
-
APPS.WSH_CUST_MERGE dependencies on MTL_CLIENT_PARAMETERS_V
12.2.2
-
APPS.WSH_TRIP_STOPS_VALIDATIONS SQL Statements
12.2.2
-
VIEW: APPS.MTL_CLIENT_ITEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CLIENT_ITEMS_VL, object_name:MTL_CLIENT_ITEMS_VL, status:VALID,
-
APPS.WSH_CUST_MERGE SQL Statements
12.2.2
-
APPS.WSH_EXTERNAL_INTERFACE_SV dependencies on WSH_NEW_DELIVERIES
12.2.2
-
APPS.WSH_TRIP_STOPS_VALIDATIONS dependencies on WSH_SHIPPING_PARAMETERS
12.2.2
-
APPS.WSH_TRIP_VALIDATIONS dependencies on WSH_SHIPPING_PARAMETERS
12.2.2
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, status:VALID,
-
PACKAGE BODY: APPS.WSH_EXTERNAL_INTERFACE_SV
12.2.2
-
APPS.WSH_CUST_MERGE dependencies on DUAL
12.2.2
-
APPS.WSH_CUST_MERGE dependencies on RA_CUSTOMER_MERGES
12.2.2
-
APPS.WSH_TRIP_STOPS_VALIDATIONS dependencies on WSH_DELIVERY_LEGS
12.2.2
-
APPS.WSH_TRIP_STOPS_VALIDATIONS dependencies on WSH_NEW_DELIVERIES
12.2.2
-
SYNONYM: APPS.HZ_PARTIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
APPS.WSH_TRIP_VALIDATIONS dependencies on WSH_TRIP_STOPS
12.2.2
-
PACKAGE BODY: APPS.WSH_TRIP_STOPS_ACTIONS
12.2.2
-
eTRM - INV Tables and Views
12.2.2
-
PACKAGE BODY: APPS.WSH_CUST_MERGE
12.2.2
-
APPS.WSH_TRIP_VALIDATIONS dependencies on WSH_TRIPS
12.2.2
-
APPS.WSH_TRIP_STOPS_ACTIONS dependencies on WSH_TRIP_STOPS
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.WSH_TRIP_STOPS_VALIDATIONS
12.2.2
-
PACKAGE BODY: APPS.WSH_TRIP_VALIDATIONS
12.2.2
-
eTRM - INV Tables and Views
12.2.2