Search Results wms_device_requests_hist
Overview
The WMS_DEVICE_REQUESTS_HIST table is a Warehouse Management System (WMS) history table that stores a complete record of all device requests submitted through Oracle EBS mobile and RF (radio frequency) device interfaces. It resides in the WMS schema and is classified as VALID in Oracle EBS 12.1.1 and 12.2.2. In the context of Oracle Warehouse Management, this table serves as the persistent audit trail for transactions initiated from handheld scanners, barcode devices, and other mobile hardware that communicate with the EBS WMS module. Each row represents a single device request, capturing the task context, inventory details, transaction quantities, device assignment, and request outcome.
From a Data Vault modeling perspective, the heuristic classification of this object is satellite-leaning, based on its foreign key structure. This suggests that WMS_DEVICE_REQUESTS_HIST functions primarily as a descriptive satellite, holding attribute-rich historical data keyed to a parent entity rather than acting as a hub or link. The single documented foreign key, DEVICE_ID referencing WMS_DEVICES_B, reinforces this interpretation: the table attaches granular request history to the device hub.
Key Information Stored
The table contains 42 documented columns. The most significant include:
- REQUEST_ID — The surrogate primary key uniquely identifying each device request record.
- TASK_ID and TASK_TYPE_ID — Identify the warehouse task and its type associated with the request.
- TASK_SUMMARY — A descriptive summary of the task being performed on the device.
- BUSINESS_EVENT_ID — Links the request to the business event that triggered it.
- ORGANIZATION_ID, SUBINVENTORY_CODE, and LOCATOR_ID — Define the inventory organization, subinventory, and locator context.
- INVENTORY_ITEM_ID, REVISION, UOM, LOT_NUMBER, SERIAL_NUMBER, and LPN_ID — Capture the item and lot/serial/LPN details involved in the transaction.
- TRANSACTION_QUANTITY and LOT_QTY — Record the quantities moved or processed.
- DEVICE_ID — Foreign key to WMS_DEVICES_B, identifying the physical device that submitted the request.
- STATUS_CODE and STATUS_MSG — Indicate the processing outcome and any diagnostic message returned to the device.
- REQUEST_DATE and RESUBMIT_DATE — Timestamp the original and any resubmitted request.
- REQUESTED_BY, RESPONSIBILITY_ID, and CONCURRENT_REQUEST_ID — Track the user, responsibility, and concurrent program context.
Standard EBS audit columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN) are also present, along with device status and reason identifiers.
Common Use Cases and Queries
WMS_DEVICE_REQUESTS_HIST is primarily used for auditing, troubleshooting, and performance analysis of mobile warehouse transactions. Common scenarios include tracing failed or rejected device requests, analyzing device throughput, and reconciling inventory movements against submitted transactions.
A typical query to retrieve recent requests for a specific device:
SELECT request_id, device_id, status_code, status_msg, request_date FROM wms.wms_device_requests_hist WHERE device_id = :device_id ORDER BY request_date DESC;
A query to analyze failures by task type:
SELECT task_type_id, status_code, COUNT(*) FROM wms.wms_device_requests_hist WHERE status_code != 'SUCCESS' GROUP BY task_type_id, status_code;
Reporting use cases include device utilization reports, exception dashboards highlighting non-successful requests, and reconciliation of transaction quantities against inventory balances.
Related Objects
The primary documented relationship is the foreign key from WMS_DEVICE_REQUESTS_HIST.DEVICE_ID to WMS_DEVICES_B, which defines the device master referenced by each request. Additional functionally related objects in the WMS module typically include:
- WMS_DEVICES_B — Device master table (referenced via DEVICE_ID).
- WMS_DEVICE_REQUESTS — The active/current device request table, often paired with this history table.
- WMS_TASKS — Warehouse tasks referenced via TASK_ID.
- MTL_SYSTEM_ITEMS_B — Item master referenced via INVENTORY_ITEM_ID.
- MTL_ITEM_LOCATIONS — Locator definitions referenced via LOCATOR_ID and TRANSFER_LOC_ID.
- WMS_LPN_HISTORY — LPN transaction history related via LPN_ID and XFER_LPN_ID.
These relationships make WMS_DEVICE_REQUESTS_HIST central to end-to-end traceability of mobile warehouse activity within Oracle EBS.
-
Table: WMS_DEVICE_REQUESTS_HIST
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_DEVICE_REQUESTS_HIST, object_name:WMS_DEVICE_REQUESTS_HIST, status:VALID, product: WMS - Warehouse Management , description: History Table for device request. This table stores all the device requests that have been submitted. , implementation_dba_data: WMS.WMS_DEVICE_REQUESTS_HIST ,
-
Table: WMS_DEVICE_REQUESTS_HIST
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_DEVICE_REQUESTS_HIST, object_name:WMS_DEVICE_REQUESTS_HIST, status:VALID, product: WMS - Warehouse Management , description: History Table for device request. This table stores all the device requests that have been submitted. , implementation_dba_data: WMS.WMS_DEVICE_REQUESTS_HIST ,
-
SYNONYM: APPS.WMS_DEVICE_REQUESTS_HIST
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WMS_DEVICE_REQUESTS_HIST, status:VALID,
-
VIEW: WMS.WMS_DEVICE_REQUESTS_HIST#
12.2.2
owner:WMS, object_type:VIEW, object_name:WMS_DEVICE_REQUESTS_HIST#, status:VALID,
-
SYNONYM: APPS.WMS_DEVICE_REQUESTS_HIST
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WMS_DEVICE_REQUESTS_HIST, status:VALID,
-
APPS.WMS_DEVHIST_HANDLER_PKG SQL Statements
12.1.1
-
APPS.WMS_DEVHIST_HANDLER_PKG SQL Statements
12.2.2
-
APPS.WMS_DEVICE_INTEGRATION_PVT SQL Statements
12.1.1
-
APPS.WMS_DEVICE_INTEGRATION_PVT SQL Statements
12.2.2
-
VIEW: WMS.WMS_DEVICE_REQUESTS_HIST#
12.2.2
-
APPS.WMS_DEVICE_INTEGRATION_WCS SQL Statements
12.2.2
-
Table: WMS_DEVICES_B
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_DEVICES_B, object_name:WMS_DEVICES_B, status:VALID, product: WMS - Warehouse Management , description: Device DefinitionTable , implementation_dba_data: WMS.WMS_DEVICES_B ,
-
Table: WMS_DEVICES_B
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_DEVICES_B, object_name:WMS_DEVICES_B, status:VALID, product: WMS - Warehouse Management , description: Device DefinitionTable , implementation_dba_data: WMS.WMS_DEVICES_B ,
-
APPS.WMS_DEVICE_INTEGRATION_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.WMS_DEVICE_INTEGRATION_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_DEVICE_INTEGRATION_PUB, status:VALID,
-
APPS.WMS_DEVICE_INTEGRATION_WCS SQL Statements
12.1.1
-
APPS.WMS_DEVICE_INTEGRATION_PUB SQL Statements
12.2.2
-
PACKAGE BODY: APPS.WMS_DEVICE_INTEGRATION_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_DEVICE_INTEGRATION_PUB, status:VALID,
-
VIEW: APPS.WMS_DEVICE_REQUESTS_HIST_V
12.2.2
-
PACKAGE BODY: APPS.WMS_DEVICE_INTEGRATION_WCS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_DEVICE_INTEGRATION_WCS, status:VALID,
-
PACKAGE BODY: APPS.WMS_DEVHIST_HANDLER_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_DEVHIST_HANDLER_PKG, status:VALID,
-
VIEW: APPS.WMS_DEVICE_REQUESTS_HIST_V
12.1.1
-
PACKAGE BODY: APPS.WMS_DEVICE_INTEGRATION_WCS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_DEVICE_INTEGRATION_WCS, status:VALID,
-
PACKAGE BODY: APPS.WMS_DEVHIST_HANDLER_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_DEVHIST_HANDLER_PKG, status:VALID,
-
TABLE: WMS.WMS_DEVICE_REQUESTS_HIST
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_DEVICE_REQUESTS_HIST, object_name:WMS_DEVICE_REQUESTS_HIST, status:VALID,
-
TABLE: WMS.WMS_DEVICE_REQUESTS_HIST
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_DEVICE_REQUESTS_HIST, object_name:WMS_DEVICE_REQUESTS_HIST, status:VALID,
-
PACKAGE BODY: APPS.WMS_PURGE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_PURGE_PVT, status:VALID,
-
PACKAGE BODY: APPS.WMS_PURGE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_PURGE_PVT, status:VALID,
-
PACKAGE BODY: APPS.WMS_DEVICE_INTEGRATION_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_DEVICE_INTEGRATION_PVT, status:VALID,
-
PACKAGE BODY: APPS.WMS_DEVICE_INTEGRATION_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_DEVICE_INTEGRATION_PVT, status:VALID,
-
PACKAGE BODY: APPS.WMS_DEVHIST_HANDLER_PKG
12.2.2
-
PACKAGE BODY: APPS.WMS_DEVHIST_HANDLER_PKG
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.WMS_DEVICE_CONFIRMATION_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_DEVICE_CONFIRMATION_PUB, status:VALID,
-
PACKAGE BODY: APPS.WMS_RFID_DEVICE_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_RFID_DEVICE_PUB, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.WMS_RFID_DEVICE_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_RFID_DEVICE_PUB, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.WMS_DEVICE_CONFIRMATION_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_DEVICE_CONFIRMATION_PUB, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
View: WMS_DEVICE_REQUESTS_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_DEVICE_REQUESTS_HIST_V, object_name:WMS_DEVICE_REQUESTS_HIST_V, status:VALID, product: WMS - Warehouse Management , description: Device Request History. It is used for View Device Request History form , implementation_dba_data: APPS.WMS_DEVICE_REQUESTS_HIST_V ,
-
View: WMS_DEVICE_REQUESTS_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_DEVICE_REQUESTS_HIST_V, object_name:WMS_DEVICE_REQUESTS_HIST_V, status:VALID, product: WMS - Warehouse Management , description: Device Request History. It is used for View Device Request History form , implementation_dba_data: APPS.WMS_DEVICE_REQUESTS_HIST_V ,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.WMS_DEVICE_REQUESTS_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_DEVICE_REQUESTS_HIST_V, object_name:WMS_DEVICE_REQUESTS_HIST_V, status:VALID,
-
PACKAGE BODY: APPS.WMS_DEVICE_INTEGRATION_WCS
12.2.2