Search Results wsh_itm_parameter_setups_b
Overview
WSH_ITM_PARAMETER_SETUPS_B is a Shipping Execution (WSH) base table in the Oracle E-Business Suite 12.1.1 and 12.2.2 data model. It stores the non-translatable, language-independent attributes of Parameter Setup records used to configure the Java middle tier of the shipping adapter. Each row defines a named configuration parameter, its active value, its default value, and whether the parameter may be maintained by end users. In this respect the table functions as the operational registry that the adapter reads when it initializes or refreshes its runtime configuration.
Following heuristic Data Vault classification derived from the foreign-key structure, WSH_ITM_PARAMETER_SETUPS_B is hub-leaning. That is a modeling suggestion rather than a physical fact: PARAMETER_ID behaves as a durable business key around which descriptive and translatable attributes are organized, with WSH_ITM_PARAMETER_SETUPS_TL acting as a dependent satellite carrying the translated text. The presence of ZD_EDITION_NAME in the unique index reflects the editioning support introduced in the 12.2.x architecture, allowing multiple editions of the same logical parameter identifier to coexist.
Key Information Stored
The documented physical schema comprises eleven columns. The most significant are:
- PARAMETER_ID — the surrogate primary key, enforced by WSH_ITM_PARAMETER_SETUPS_B_PK, and the column through which the translated table joins back to this base table.
- PARAMETER_NAME — the internal name that identifies the configuration parameter to the adapter.
- VALUE — the currently effective value applied to the Java middle tier configuration.
- DEFAULT_VALUE — the seeded value restored when a setup is reset or when no override exists.
- USER_SETTABLE — a flag indicating whether the parameter is exposed for user maintenance or is reserved for internal control.
- ZD_EDITION_NAME — the edition discriminator; together with PARAMETER_ID it forms the unique business-key candidate WSH_ITM_PARAMETER_SETUPS_B_U1.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — the standard WHO audit columns used for change tracking and reconciliation.
The distinction between the surrogate key (PARAMETER_ID alone) and the business-key candidate (PARAMETER_ID plus ZD_EDITION_NAME) is important in 12.2.x, where edition-aware queries must include the edition column to avoid ambiguous matches.
Common Use Cases and Queries
Typical scenarios include auditing adapter configuration, comparing active values against seeded defaults, identifying parameters that have been customized, and verifying which parameters are eligible for user maintenance. A common diagnostic query lists parameters whose current value differs from the default:
SELECT parameter_id, parameter_name, value, default_value, user_settable FROM wsh.wsh_itm_parameter_setups_b WHERE value <> default_value ORDER BY parameter_name;SELECT parameter_id, parameter_name, value FROM wsh.wsh_itm_parameter_setups_b WHERE user_settable = 'Y' ORDER BY parameter_name;SELECT b.parameter_id, b.parameter_name, t.description FROM wsh.wsh_itm_parameter_setups_b b, wsh.wsh_itm_parameter_setups_tl t WHERE b.parameter_id = t.parameter_id AND t.language = USERENV('LANG');
Reporting is usually confined to setup validation and support investigation rather than transactional analytics, since the table holds configuration rather than shipment activity.
Related Objects
The documented relationships center on the translatable companion table and the adapter that consumes the configuration:
- WSH_ITM_PARAMETER_SETUPS_TL — joined on WSH_ITM_PARAMETER_SETUPS_TL.PARAMETER_ID to WSH_ITM_PARAMETER_SETUPS_B.PARAMETER_ID; supplies language-specific parameter descriptions.
- WSH_ITM_PARAMETER_SETUPS_B_PK — the primary key constraint on PARAMETER_ID.
- WSH_ITM_PARAMETER_SETUPS_B_U1 — the unique index on PARAMETER_ID and ZD_EDITION_NAME.
- Shipping Execution adapter configuration and setup user interfaces that read and update parameter values at runtime.
- Standard audit and concurrency objects referenced through the CREATED_BY, LAST_UPDATED_BY, and LAST_UPDATE_LOGIN columns, such as FND_USER and the FND logins view.
Because the table is a base (non-translatable) repository, any query that requires user-facing text must join to WSH_ITM_PARAMETER_SETUPS_TL.
-
Table: WSH_ITM_PARAMETER_SETUPS_B
12.1.1
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_ITM_PARAMETER_SETUPS_B, object_name:WSH_ITM_PARAMETER_SETUPS_B, status:VALID, product: WSH - Shipping Execution , description: WSH_ITM_PARAMETER_SETUPS_B stores the basic Non-translatable information for the Parameter Setup. These parameters are used to configure the java middle tier of the adapter , implementation_dba_data: WSH.WSH_ITM_PARAMETER_SETUPS_B ,
-
Table: WSH_ITM_PARAMETER_SETUPS_B
12.2.2
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_ITM_PARAMETER_SETUPS_B, object_name:WSH_ITM_PARAMETER_SETUPS_B, status:VALID, product: WSH - Shipping Execution , description: WSH_ITM_PARAMETER_SETUPS_B stores the basic Non-translatable information for the Parameter Setup. These parameters are used to configure the java middle tier of the adapter , implementation_dba_data: WSH.WSH_ITM_PARAMETER_SETUPS_B ,
-
SYNONYM: APPS.WSH_ITM_PARAMETER_SETUPS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WSH_ITM_PARAMETER_SETUPS_B, status:VALID,
-
VIEW: WSH.WSH_ITM_PARAMETER_SETUPS_B#
12.2.2
owner:WSH, object_type:VIEW, object_name:WSH_ITM_PARAMETER_SETUPS_B#, status:VALID,
-
TABLE: WSH.WSH_ITM_PARAMETER_SETUPS_B
12.2.2
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_ITM_PARAMETER_SETUPS_B, object_name:WSH_ITM_PARAMETER_SETUPS_B, status:VALID,
-
APPS.WSH_ITM_PARAMETER_SETUPS_PKG SQL Statements
12.1.1
-
TABLE: WSH.WSH_ITM_PARAMETER_SETUPS_B
12.1.1
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_ITM_PARAMETER_SETUPS_B, object_name:WSH_ITM_PARAMETER_SETUPS_B, status:VALID,
-
TRIGGER: APPS.WSH_ITM_PARAMETER_SETUPS_B+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:WSH_ITM_PARAMETER_SETUPS_B+, status:VALID,
-
VIEW: APPS.WSH_ITM_PARAMETER_SETUPS_VL
12.2.2
-
SYNONYM: APPS.WSH_ITM_PARAMETER_SETUPS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WSH_ITM_PARAMETER_SETUPS_B, status:VALID,
-
VIEW: WSH.WSH_ITM_PARAMETER_SETUPS_B#
12.2.2
-
TRIGGER: APPS.WSH_ITM_PARAMETER_SETUPS_B+
12.2.2
-
APPS.WSH_ITM_PARAMETER_SETUPS_PKG SQL Statements
12.2.2
-
VIEW: APPS.WSH_ITM_PARAMETER_SETUPS_VL
12.1.1
-
Table: WSH_ITM_PARAMETER_SETUPS_TL
12.1.1
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_ITM_PARAMETER_SETUPS_TL, object_name:WSH_ITM_PARAMETER_SETUPS_TL, status:VALID, product: WSH - Shipping Execution , description: WSH_ITM_PARAMETER_SETUPS_TL stores the translatebale information for the Parameters. , implementation_dba_data: WSH.WSH_ITM_PARAMETER_SETUPS_TL ,
-
12.2.2 DBA Data
12.2.2
-
FUNCTION: APPS.WSH_ITM_PARAMETER_SETUPS_B=
12.2.2
-
Table: WSH_ITM_PARAMETER_SETUPS_TL
12.2.2
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_ITM_PARAMETER_SETUPS_TL, object_name:WSH_ITM_PARAMETER_SETUPS_TL, status:VALID, product: WSH - Shipping Execution , description: WSH_ITM_PARAMETER_SETUPS_TL stores the translatebale information for the Parameters. , implementation_dba_data: WSH.WSH_ITM_PARAMETER_SETUPS_TL ,
-
12.2.2 DBA Data
12.2.2
-
View: WSH_ITM_PARAMETER_SETUPS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_PARAMETER_SETUPS_VL, object_name:WSH_ITM_PARAMETER_SETUPS_VL, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_ITM_PARAMETER_SETUPS_VL ,
-
PACKAGE BODY: APPS.WSH_ITM_PARAMETER_SETUPS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_ITM_PARAMETER_SETUPS_PKG, status:VALID,
-
FUNCTION: APPS.WSH_ITM_PARAMETER_SETUPS_B=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:WSH_ITM_PARAMETER_SETUPS_B=, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
View: WSH_ITM_PARAMETER_SETUPS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_PARAMETER_SETUPS_VL, object_name:WSH_ITM_PARAMETER_SETUPS_VL, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_ITM_PARAMETER_SETUPS_VL ,
-
PACKAGE BODY: APPS.WSH_ITM_ASYN_MSGMAP_ASSISTANT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_ITM_ASYN_MSGMAP_ASSISTANT, status:VALID,
-
PACKAGE BODY: APPS.WSH_ITM_ASYN_MSGMAP_ASSISTANT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_ITM_ASYN_MSGMAP_ASSISTANT, status:VALID,
-
PACKAGE BODY: APPS.WSH_ITM_PARAMETER_SETUPS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_ITM_PARAMETER_SETUPS_PKG, status:VALID,
-
PACKAGE BODY: APPS.WSH_ITM_PARTY_SYNC
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_ITM_PARTY_SYNC, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: APPS.WSH_ITM_PARAMETER_SETUPS_PKG
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.WSH_ITM_PARAMETER_SETUPS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_PARAMETER_SETUPS_VL, object_name:WSH_ITM_PARAMETER_SETUPS_VL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: APPS.WSH_ITM_PARAMETER_SETUPS_PKG
12.2.2
-
PACKAGE BODY: APPS.WSH_ITM_PARAMETER_SETUPS_PKG
12.1.1
-
PACKAGE BODY: APPS.ONT_ITM_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ONT_ITM_PKG, status:VALID,
-
VIEW: APPS.WSH_ITM_PARAMETER_SETUPS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_PARAMETER_SETUPS_VL, object_name:WSH_ITM_PARAMETER_SETUPS_VL, status:VALID,
-
PACKAGE BODY: APPS.WSH_ITM_PARAMETER_SETUPS_PKG
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.WSH_ITM_ASYN_MSGMAP_ASSISTANT SQL Statements
12.2.2
-
APPS.WSH_ITM_ASYN_MSGMAP_ASSISTANT SQL Statements
12.1.1
-
APPS.WSH_ITM_ASYN_MSGMAP_ASSISTANT dependencies on WSH_ITM_PARAMETER_SETUPS_B
12.1.1
-
APPS.ONT_ITM_PKG dependencies on WSH_ITM_PARAMETER_SETUPS_B
12.2.2
-
APPS.WSH_ITM_PARTY_SYNC dependencies on WSH_ITM_PARAMETER_SETUPS_B
12.2.2
-
APPS.WSH_ITM_PARAMETER_SETUPS_PKG dependencies on WSH_ITM_PARAMETER_SETUPS_B
12.2.2