Search Results use_for_pick_consist_flag
Overview
WMS_PARAMETERS_B is the base table that stores parameter definitions for Oracle Warehouse Management (WMS) in Oracle E-Business Suite 12.1.1 and 12.2.2. It belongs to the WMS schema and serves as the master repository for the configurable parameters that drive the WMS rules engine, including picking, put-away, sorting, labeling, consistency checking, and operation selection logic. Each row represents a single parameter that can be referenced by rules, restrictions, sort criteria, and DB object definitions throughout the Warehouse Management module.
From a Data Vault modeling perspective, the FK structure suggests this table behaves as a hub-leaning entity. Its surrogate primary key, populated by the WMS_PARAMETERS_B_PK constraint on PARAMETER_ID, anchors relationships with numerous dependent and referencing tables, while descriptive attributes such as data type, expression, and usage flags reside locally on the same row. This pattern is characteristic of a central reference entity whose business keys are referenced widely across the transaction and configuration landscape.
Key Information Stored
The table contains 47 documented columns. The most significant include:
- PARAMETER_ID — Surrogate primary key defined by WMS_PARAMETERS_B_PK. Also participates in the unique index WMS_PARAMETERS_B_U1 (PARAMETER_ID, ZD_EDITION_NAME), which supports edition-based redefinition in 12.2.x.
- OBJECT_ID — Foreign key to WMS_OBJECTS_B, identifying the WMS object to which the parameter belongs.
- DB_OBJECT_ID — Foreign key to WMS_DB_OBJECTS, linking the parameter to its underlying database object.
- DB_OBJECT_REFERENCE_ID — Foreign key to WMS_DB_OBJECT_REFERENCES.
- DB_OBJECT_REF_TYPE_CODE and PARAMETER_TYPE_CODE — Classify the parameter's reference type and functional category.
- COLUMN_NAME and EXPRESSION — Specify the source column or SQL expression supplying the parameter value.
- DATA_TYPE_CODE — Declares the expected data type for validation.
- FLEXFIELD_APPLICATION_ID, FLEXFIELD_NAME, and FLEXFIELD_USAGE_CODE — Control how the parameter maps to a descriptive flexfield; FLEXFIELD_APPLICATION_ID references FND_APPLICATION.
- USE_FOR_PUT_SORT_FLAG, USE_FOR_PICK_SORT_FLAG, USE_FOR_PUT_REST_FLAG, USE_FOR_PICK_REST_FLAG, USE_FOR_LABEL_REST_FLAG, USE_FOR_PICK_CONSIST_FLAG, and USE_FOR_OP_SELECTION_FLAG — Determine whether the parameter is eligible for use in sort criteria, restrictions, label rules, consistency rules, and operation selection respectively.
- USER_DEFINED_FLAG — Indicates whether the parameter was seeded by Oracle or created by a user.
- RULE_SUBTYPE_CODE — Associates the parameter with a rule subtype for filtering purposes.
- ZD_EDITION_NAME — Supports Edition-Based Redefinition (EBR) in 12.2.x environments.
Standard audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) and the ATTRIBUTE1 through ATTRIBUTE15 DFF columns are also present.
Common Use Cases and Queries
WMS administrators and developers query this table to audit parameter definitions, diagnose rule behavior, and validate configuration before deployment. Typical scenarios include identifying all pick-related sort parameters, tracing which parameters feed a specific DB object, and reporting on user-defined versus seeded parameters.
A representative query to list pick sort parameters:
- SELECT parameter_id, column_name, expression, data_type_code FROM wms_parameters_b WHERE use_for_pick_sort_flag = 'Y' AND user_defined_flag = 'Y';
To resolve the object a parameter belongs to:
- SELECT p.parameter_id, p.column_name, o.object_name FROM wms_parameters_b p, wms_objects_b o WHERE p.object_id = o.object_id;
To surface translatable descriptions, join to WMS_PARAMETERS_TL on PARAMETER_ID. Reporting extracts commonly feed configuration migration scripts, rule engine audits, and integration setups that must replicate WMS parameter definitions across environments.
Related Objects
WMS_PARAMETERS_B is heavily referenced across the WMS configuration schema. The most significant related objects include:
- WMS_PARAMETERS_TL — Stores translated parameter names and descriptions, joined on PARAMETER_ID.
- WMS_RESTRICTIONS — References parameters through PARAMETER_ID and OPERAND_PARAMETER_ID.
- WMS_SORT_CRITERIA — Joins on PARAMETER_ID to define sort sequences.
- WMS_RULES_B — Links quantity function logic via QTY_FUNCTION_PARAMETER_ID.
- WMS_RULE_CONSISTENCIES — References PARAMETER_ID for consistency rule validation.
- WMS_DB_OBJECTS — Both a parent (via DB_OBJECT_ID) and a child (via CONTEXT_PARAMETER_ID).
- WMS_DB_OBJECT_JOINS — References both PARAMETER_ID and PARENT_PARAMETER_ID.
- WMS_OBJECTS_B — Parent of OBJECT_ID.
- WMS_DB_OBJECT_REFERENCES — Parent of DB_OBJECT_REFERENCE_ID.
- FND_APPLICATION — Parent of FLEXFIELD_APPLICATION_ID, tying parameters to flexfield definitions.
Together these relationships position WMS_PARAMETERS_B as a central hub in the Warehouse Management rule configuration model.
-
Table: WMS_PARAMETERS_B
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_PARAMETERS_B, object_name:WMS_PARAMETERS_B, status:VALID, product: WMS - Warehouse Management , description: WMS Parameters , implementation_dba_data: WMS.WMS_PARAMETERS_B ,
-
Table: WMS_PARAMETERS_B
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_PARAMETERS_B, object_name:WMS_PARAMETERS_B, status:VALID, product: WMS - Warehouse Management , description: WMS Parameters , implementation_dba_data: WMS.WMS_PARAMETERS_B ,
-
VIEW: WMS.WMS_PARAMETERS_B#
12.2.2
-
View: WMS_OBJECTS_RULE_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_OBJECTS_RULE_LOV_V, object_name:WMS_OBJECTS_RULE_LOV_V, status:VALID, product: WMS - Warehouse Management , description: WMS business object LOV view , implementation_dba_data: APPS.WMS_OBJECTS_RULE_LOV_V ,
-
VIEW: WMS.WMS_PARAMETERS_B#
12.2.2
owner:WMS, object_type:VIEW, object_name:WMS_PARAMETERS_B#, status:VALID,
-
VIEW: APPS.WMS_OBJECTS_RULE_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_OBJECTS_RULE_LOV_V, object_name:WMS_OBJECTS_RULE_LOV_V, status:VALID,
-
VIEW: APPS.WMS_PARAMETERS_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_PARAMETERS_LOV_V, object_name:WMS_PARAMETERS_LOV_V, status:VALID,
-
VIEW: APPS.WMS_OBJECTS_RULE_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_OBJECTS_RULE_LOV_V, object_name:WMS_OBJECTS_RULE_LOV_V, status:VALID,
-
View: WMS_OBJECTS_RULE_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_OBJECTS_RULE_LOV_V, object_name:WMS_OBJECTS_RULE_LOV_V, status:VALID, product: WMS - Warehouse Management , description: WMS business object LOV view , implementation_dba_data: APPS.WMS_OBJECTS_RULE_LOV_V ,
-
VIEW: APPS.WMS_PARAMETERS_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_PARAMETERS_LOV_V, object_name:WMS_PARAMETERS_LOV_V, status:VALID,
-
View: WMS_PARAMETERS_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_PARAMETERS_LOV_V, object_name:WMS_PARAMETERS_LOV_V, status:VALID, product: WMS - Warehouse Management , description: WMS parameter LOV view , implementation_dba_data: APPS.WMS_PARAMETERS_LOV_V ,
-
View: WMS_PARAMETERS_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_PARAMETERS_LOV_V, object_name:WMS_PARAMETERS_LOV_V, status:VALID, product: WMS - Warehouse Management , description: WMS parameter LOV view , implementation_dba_data: APPS.WMS_PARAMETERS_LOV_V ,
-
View: WMS_PARAMETERS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_PARAMETERS_VL, object_name:WMS_PARAMETERS_VL, status:VALID, product: WMS - Warehouse Management , description: WMS parameter MLS view , implementation_dba_data: APPS.WMS_PARAMETERS_VL ,
-
View: WMS_PARAMETERS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_PARAMETERS_VL, object_name:WMS_PARAMETERS_VL, status:VALID, product: WMS - Warehouse Management , description: WMS parameter MLS view , implementation_dba_data: APPS.WMS_PARAMETERS_VL ,
-
VIEW: APPS.WMS_PARAMETERS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_PARAMETERS_VL, object_name:WMS_PARAMETERS_VL, status:VALID,
-
APPS.WMS_PARAMETERS_PKG SQL Statements
12.1.1
-
TABLE: WMS.WMS_PARAMETERS_B
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_PARAMETERS_B, object_name:WMS_PARAMETERS_B, status:VALID,
-
TABLE: WMS.WMS_PARAMETERS_B
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_PARAMETERS_B, object_name:WMS_PARAMETERS_B, status:VALID,
-
VIEW: APPS.WMS_PARAMETERS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_PARAMETERS_VL, object_name:WMS_PARAMETERS_VL, status:VALID,
-
APPS.WMS_PARAMETERS_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.WMS_PARAMETERS_PKG
12.2.2
-
PACKAGE BODY: APPS.WMS_PARAMETERS_PKG
12.1.1
-
eTRM - WMS Tables and Views
12.1.1
-
eTRM - WMS Tables and Views
12.2.2