Search Results wsh_parameters
Overview
WSH_PARAMETERS is the Shipping Parameters table owned by the OE schema in Oracle E-Business Suite (validated in 12.1.1 and 12.2.2). It stores the operational and printing configuration that drives Oracle Shipping execution at the organization (warehouse) level. Each row corresponds to a single inventory organization and defines how that organization plans shipments, handles weight and volume calculations, controls container and packing behavior, sequences releases, selects pick slip and release rules, and determines report sets for departure and delivery documentation. The table is a foundational setup object: Shipping execution logic, AutoCreate, Pick Release, and Delivery workflows read these parameters at runtime to determine default behavior. Because WSH_PARAMETERS governs behavior across many downstream processes, its values directly affect picking, packing, manifesting, and shipping confirmation.
From a Data Vault modeling perspective, the ETRM metadata classifies this table heuristically as standalone. In practice it functions most naturally as a satellite keyed by ORGANIZATION_ID (the business key), with the remaining descriptive columns (rules, flags, report sets) captured as dependent attributes. It is not a hub or link, as it holds no unique business transaction identity of its own beyond the organization.
Key Information Stored
The documented physical schema contains 42 columns. The most operationally significant are summarized below. Note that the FK metadata identifies RELEASE_SEQ_RULE_ID and PICK_SLIP_RULE_ID as references into their respective rule tables; these, alongside ORGANIZATION_ID, are the principal business-key candidates, though no unique index is documented in the excerpt.
- ORGANIZATION_ID — The inventory organization (warehouse) to which the parameter set applies; the de facto business key.
- PLANNING_METHOD_FLAG — Determines the planning approach used for shipment consolidation.
- WEIGHT_UOM_CLASS / VOLUME_UOM_CLASS — Unit of measure classes applied to weight and volume calculations.
- WEIGHT_VOLUME_DPW_FLAG / WEIGHT_VOLUME_SC_FLAG — Control whether weight and volume are captured during pick/drop and ship confirm.
- INV_CONTROLS_CONTAINER_FLAG / ENFORCE_PACKING_FLAG — Govern container control and packing enforcement during pick release and shipping.
- PERCENT_FILL_BASIS_FLAG — Basis for percent-fill container calculations.
- INVOICE_DELIVERY_COMPLETE_FLAG — Determines delivery-complete behavior for invoicing.
- RELEASE_SEQ_RULE_ID — FK to WSH_RELEASE_SEQ_RULES; governs release sequencing.
- PICK_SLIP_RULE_ID — FK to WSH_PICK_SLIP_RULES; governs pick slip grouping/sorting.
- PRINT_PICK_SLIP_MODE — Controls pick slip printing behavior.
- DEPARTURE_REPORT_SET_ID / DELIVERY_REPORT_SET_ID / PICK_RELEASE_REPORT_SET_ID — Report set identifiers used for shipping documentation.
- AUTOCREATE_DEL_ORDERS_FLAG — Controls automatic creation of delivery orders.
- ATTRIBUTE1–ATTRIBUTE15 — DFF (descriptive flexfield) columns for customer extension.
Audit columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, PROGRAM_ID, REQUEST_ID, etc.) follow standard EBS WHO-column conventions.
Common Use Cases and Queries
Typical uses include reviewing or auditing shipping setup per organization, comparing parameters across warehouses, and troubleshooting unexpected Pick Release or ship-confirm behavior. A frequent query retrieves the configuration for a specific warehouse:
SELECT organization_id,
planning_method_flag,
enforce_packing_flag,
inv_controls_container_flag,
weight_volume_sc_flag,
release_seq_rule_id,
pick_slip_rule_id
FROM oe.wsh_parameters
WHERE organization_id = :p_org_id;
Reporting queries often join to the rule tables to translate rule IDs into descriptions. Auditing whether AutoCreate or packing enforcement is enabled across all shipping organizations is another common pattern, as is validating that each active organization has a populated parameter row.
Related Objects
- WSH_RELEASE_SEQ_RULES — joined via WSH_PARAMETERS.RELEASE_SEQ_RULE_ID = WSH_RELEASE_SEQ_RULES.RELEASE_SEQ_RULE_ID.
- WSH_PICK_SLIP_RULES — joined via WSH_PARAMETERS.PICK_SLIP_RULE_ID = WSH_PICK_SLIP_RULES.PICK_SLIP_RULE_ID.
- WSH_NEW_DELIVERIES — delivery records governed by these parameters.
- WSH_DELIVERY_ASSIGNMENTS — associations driven by grouping/packing parameters.
- WSH_TRIPS — trip and departure reporting reference these settings.
- MTL_PARAMETERS — the analogous inventory-organization parameter table, sharing ORGANIZATION_ID.
- ORG_ORGANIZATION_DEFINITIONS / HR_ALL_ORGANIZATION_UNITS — resolve organization names for reporting.
Shipping-related concurrent programs and the Oracle Shipping public APIs consume these parameters implicitly during execution, making WSH_PARAMETERS a critical setup dependency for shipping transaction accuracy.
-
Table: WSH_PARAMETERS
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.WSH_PARAMETERS, object_name:WSH_PARAMETERS, status:VALID, product: OE - Order Entry , description: Shipping parameters , implementation_dba_data: OE.WSH_PARAMETERS ,
-
Table: WSH_PARAMETERS
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.WSH_PARAMETERS, object_name:WSH_PARAMETERS, status:VALID, product: OE - Order Entry , description: Shipping parameters , implementation_dba_data: OE.WSH_PARAMETERS ,
-
PACKAGE: APPS.WSH_PARAMETERS_PVT
12.2.2
-
SYNONYM: APPS.WSH_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WSH_PARAMETERS, status:VALID,
-
PACKAGE: APPS.WSH_PARAMETERS_PVT
12.1.1
-
SYNONYM: APPS.WSH_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WSH_PARAMETERS, status:VALID,
-
VIEW: OE.WSH_PARAMETERS#
12.2.2
owner:OE, object_type:VIEW, object_name:WSH_PARAMETERS#, status:VALID,
-
VIEW: OE.WSH_PARAMETERS#
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
APPS.WSH_PARAMETERS_PVT SQL Statements
12.2.2
-
APPS.WSH_PARAMETERS_PVT SQL Statements
12.1.1
-
TABLE: OE.WSH_PARAMETERS
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.WSH_PARAMETERS, object_name:WSH_PARAMETERS, status:VALID,
-
PACKAGE BODY: APPS.WSH_PARAMETERS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_PARAMETERS_PVT, status:VALID,
-
TABLE: OE.WSH_PARAMETERS
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.WSH_PARAMETERS, object_name:WSH_PARAMETERS, status:VALID,
-
PACKAGE BODY: APPS.WSH_PARAMETERS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_PARAMETERS_PVT, status:VALID,
-
PACKAGE BODY: APPS.WSH_PR_PICKING_SESSION
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_PR_PICKING_SESSION, status:VALID,
-
PACKAGE BODY: APPS.WSH_PR_PICKING_SESSION
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_PR_PICKING_SESSION, status:VALID,
-
PACKAGE BODY: APPS.WSH_PR_PICKING_OBJECTS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_PR_PICKING_OBJECTS, status:VALID,
-
APPS.WSH_PR_PICKING_SESSION SQL Statements
12.1.1
-
PACKAGE BODY: APPS.WSH_PR_PICKING_OBJECTS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_PR_PICKING_OBJECTS, status:VALID,
-
APPS.WSH_PR_PICKING_SESSION SQL Statements
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.WSH_PARAMETERS_PVT
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.WSH_PARAMETERS_PVT
12.2.2
-
PACKAGE BODY: APPS.INV_PICK_RELEASE_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:INV_PICK_RELEASE_PUB, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.WSH_PR_CREATE_DELIVERIES
12.1.1
-
PACKAGE BODY: APPS.WSH_PR_CREATE_DELIVERIES
12.2.2
-
APPS.WSH_PR_PICKING_OBJECTS dependencies on WSH_PARAMETERS
12.1.1
-
APPS.INV_PICK_RELEASE_PUB dependencies on WSH_PARAMETERS
12.1.1
-
APPS.WSH_PR_PICKING_OBJECTS dependencies on WSH_PARAMETERS
12.2.2
-
APPS.WSH_PARAMETERS_PVT dependencies on WSH_PARAMETERS
12.1.1
-
APPS.WSH_PARAMETERS_PVT dependencies on WSH_PARAMETERS
12.2.2
-
APPS.WSH_PR_PICKING_SESSION dependencies on WSH_PARAMETERS
12.1.1
-
APPS.WSH_PR_PICKING_SESSION dependencies on WSH_PARAMETERS
12.2.2
-
APPS.INV_PICK_RELEASE_PUB SQL Statements
12.1.1
-
APPS.INV_PICK_RELEASE_PUB SQL Statements
12.2.2
-
APPS.WSH_PR_PICKING_OBJECTS SQL Statements
12.1.1
-
APPS.WSH_PR_PICKING_OBJECTS SQL Statements
12.2.2
-
APPS.WSH_PR_CREATE_DELIVERIES dependencies on WSH_PARAMETERS_PVT
12.2.2
-
APPS.WSH_PR_CREATE_DELIVERIES dependencies on WSH_PARAMETERS_PVT
12.1.1
-
APPS.WSH_PR_PICKING_SESSION dependencies on SO_PICKING_RULES
12.2.2
-
PACKAGE BODY: APPS.WSH_PR_PICKING_SESSION
12.1.1