Search Results business_event
Overview
APPS.WMS_BUS_EVENT_DEVICES_V is a business-event-to-device assignment view in the Oracle Warehouse Management (WMS) module, available in Oracle E-Business Suite 12.1.1 and 12.2.2. It exposes the configuration that links warehouse business events (identified by lookup codes of type WMS_BUS_EVENT_TYPES) to physical devices such as scanners, printers, scales, and radio-frequency terminals. In effect, the view answers the operational question: for a given warehouse event, which device is expected to participate, at which organizational level, and under what verification or automation rules?
The view is defined in the APPS schema and serves reporting and integration purposes. Functional users and technical consultants query it to audit device assignment configuration, troubleshoot transaction failures, or drive customized labels, automation flows, and third-party WMS integrations. Because the view resolves lookup meanings and joins organization and device master data, it presents fully denormalized, human-readable output rather than raw IDs, making it well suited to Oracle Reports, BI Publisher, OBIEE, and ad-hoc SQL.
Underlying Base Objects
Per the ETRM metadata, the view is defined over four referenced base objects:
- WMS_BUS_EVENT_DEVICES (SYNONYM) — the primary table (aliased WBED) that stores each business-event-to-device assignment, including level, organization, subinventory, and flag columns.
- MFG_LOOKUPS (VIEW) — joined on
LOOKUP_TYPE = 'WMS_BUS_EVENT_TYPES'andLOOKUP_CODE = WBED.BUSINESS_EVENT_IDto derive the BUSINESS_EVENT meaning. - MTL_PARAMETERS (SYNONYM) — joined on
ORGANIZATION_IDto resolve the ORGANIZATION_CODE for the inventory organization. - WMS_DEVICES_VL (VIEW) — joined on
DEVICE_IDto supply the device NAME and DEVICE_TYPE_ID from the device master.
All joins are inner joins expressed through the WHERE clause, so a row is returned only when matching lookup, organization, and device records exist. The metadata notes the base synonym WMS_BUS_EVENT_DEVICES; other referenced names are views or synonyms within APPS.
Key Columns
- ROW_ID — Rowid of the underlying WMS_BUS_EVENT_DEVICES row.
- BUSINESS_EVENT_ID / BUSINESS_EVENT — lookup code and decoded meaning of the assigned business event.
- DEVICE_ID / DEVICE_NAME / DEVICE_TYPE_ID — device identifier, descriptive name, and device type from WMS_DEVICES_VL.
- LEVEL_TYPE / LEVEL_VALUE — scope at which the assignment applies (e.g., organization, subinventory, or warehouse level).
- ORGANIZATION_ID / ORGANIZATION_CODE — inventory organization identifier and its code from MTL_PARAMETERS.
- SUBINVENTORY_CODE — subinventory context, where the level requires it.
- AUTO_ENABLED_FLAG / ENABLED_FLAG / VERIFICATION_REQUIRED — control flags indicating automatic triggering, active status, and whether operator verification is required.
- COMMENTS — free-text notes on the assignment.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — standard audit columns.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — descriptive flexfield segments carried from the base table.
Common Use Cases and Queries
Typical uses include auditing active device assignments per organization, verifying whether a business event requires operator confirmation, and supporting integration extracts that push event-to-device mappings to external systems.
- List all enabled assignments for one organization, showing device, event, and verification requirements:
SELECT business_event, device_name, level_type, level_value, subinventory_code, verification_required FROM apps.wms_bus_event_devices_v WHERE organization_code = 'M1' AND enabled_flag = 'Y' ORDER BY business_event, device_name;
- Find events configured for automatic triggering without verification, useful for troubleshooting unattended device flows:
SELECT business_event, device_name, auto_enabled_flag FROM apps.wms_bus_event_devices_v WHERE auto_enabled_flag = 'Y' AND NVL(verification_required,'N') = 'N';
- Inventory of all devices associated with a specific business event across organizations:
SELECT organization_code, device_name, device_type_id, enabled_flag FROM apps.wms_bus_event_devices_v WHERE business_event_id = :p_event_id ORDER BY organization_code;
Because the base object set is narrow and the joins are inner, query performance is generally acceptable for configuration-scale data volumes. For reporting that must include unassigned events or inactive devices, the underlying WMS_BUS_EVENT_DEVICES table should be queried directly.
-
VIEW: APPS.WMS_BUS_EVENT_DEVICES_V
12.1.1
-
View: WMS_BUS_EVENT_DEVICES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_BUS_EVENT_DEVICES_V, object_name:WMS_BUS_EVENT_DEVICES_V, status:VALID, product: WMS - Warehouse Management , implementation_dba_data: APPS.WMS_BUS_EVENT_DEVICES_V ,
-
VIEW: APPS.WMS_BUS_EVENT_DEVICES_V
12.2.2
-
View: WMS_BUS_EVENT_DEVICES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_BUS_EVENT_DEVICES_V, object_name:WMS_BUS_EVENT_DEVICES_V, status:VALID, product: WMS - Warehouse Management , implementation_dba_data: APPS.WMS_BUS_EVENT_DEVICES_V ,
-
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 ,
-
Lookup Type: PV_INTERACTION_REPT_GROUP_BY
12.2.2
product: PV - Partner Management , meaning: PV_INTERACTION_REPT_GROUP_BY , description: Interaction Group By ,
-
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 ,
-
APPS.PON_TEST_BIZ_EVENTS_PVT SQL Statements
12.1.1
-
APPS.PON_TEST_BIZ_EVENTS_PVT SQL Statements
12.2.2
-
VIEW: APPS.WMS_DEVICE_REQUESTS_WCSV
12.1.1
-
View: WMS_DEVICE_REQUESTS_WCSV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_DEVICE_REQUESTS_WCSV, object_name:WMS_DEVICE_REQUESTS_WCSV, status:VALID, product: WMS - Warehouse Management , description: View on which device request query and device response query can be based , implementation_dba_data: APPS.WMS_DEVICE_REQUESTS_WCSV ,
-
View: WMS_DEVICE_REQUESTS_WCSV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_DEVICE_REQUESTS_WCSV, object_name:WMS_DEVICE_REQUESTS_WCSV, status:VALID, product: WMS - Warehouse Management , description: View on which device request query and device response query can be based , implementation_dba_data: APPS.WMS_DEVICE_REQUESTS_WCSV ,
-
VIEW: APPS.WMS_BUS_EVENT_DEVICES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_BUS_EVENT_DEVICES_V, object_name:WMS_BUS_EVENT_DEVICES_V, status:VALID,
-
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,
-
VIEW: APPS.WMS_DEVICE_REQUESTS_HIST_V
12.2.2
-
Lookup Type: PV_INTERACTION_REPT_GROUP_BY
12.1.1
product: PV - Partner Management , meaning: PV_INTERACTION_REPT_GROUP_BY , description: Interaction Group By ,
-
VIEW: APPS.WMS_BUS_EVENT_DEVICES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_BUS_EVENT_DEVICES_V, object_name:WMS_BUS_EVENT_DEVICES_V, status:VALID,
-
VIEW: APPS.WMS_DEVICE_REQUESTS_WCSV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_DEVICE_REQUESTS_WCSV, object_name:WMS_DEVICE_REQUESTS_WCSV, status:VALID,
-
VIEW: APPS.WMS_DEVICE_REQUESTS_WCSV
12.2.2
-
VIEW: APPS.WMS_DEVICE_REQUESTS_HIST_V
12.1.1
-
VIEW: APPS.WMS_DEVICE_REQUESTS_WCSV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_DEVICE_REQUESTS_WCSV, object_name:WMS_DEVICE_REQUESTS_WCSV, status:VALID,
-
VIEW: APPS.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,
-
PACKAGE BODY: APPS.PON_TEST_BIZ_EVENTS_PVT
12.1.1
-
PACKAGE BODY: APPS.PON_TEST_BIZ_EVENTS_PVT
12.2.2
-
APPS.WMS_WCS_DIAGNOSTICS SQL Statements
12.2.2
-
APPS.WMS_WCS_DIAGNOSTICS SQL Statements
12.1.1
-
PACKAGE: APPS.WMS_WCS_DEVICE_GRP
12.2.2
-
PACKAGE: APPS.WMS_WCS_DEVICE_GRP
12.1.1
-
PACKAGE BODY: APPS.CN_COMP_PLAN_PVT
12.1.1
-
PACKAGE: APPS.WMS_DEVICE_INTEGRATION_WCS
12.1.1
-
PACKAGE BODY: APPS.CN_COMP_PLAN_PVT
12.2.2
-
PACKAGE: APPS.WMS_DEVICE_INTEGRATION_WCS
12.2.2
-
PACKAGE BODY: APPS.CN_SRP_PLAN_ASSIGNS_PVT
12.1.1
-
PACKAGE BODY: APPS.CN_SRP_PLAN_ASSIGNS_PVT
12.2.2
-
PACKAGE BODY: APPS.CN_ROLE_PLANS_PUB
12.1.1
-
PACKAGE BODY: APPS.CN_ROLE_PLANS_PUB
12.2.2
-
PACKAGE: APPS.WMS_DEVICE_INTEGRATION_PUB
12.2.2
-
PACKAGE BODY: APPS.CN_SRP_PAYGROUP_PVT
12.1.1
-
PACKAGE BODY: APPS.CN_SRP_PAYGROUP_PVT
12.2.2
-
PACKAGE: APPS.WMS_DEVICE_INTEGRATION_PUB
12.1.1
-
PACKAGE BODY: APPS.CN_SRP_PMT_PLANS_PVT
12.2.2
-
PACKAGE BODY: APPS.CN_SRP_PMT_PLANS_PVT
12.1.1
-
APPS.CN_COMP_PLAN_PVT dependencies on CN_COMP_PLAN_PVT
12.1.1
-
APPS.CN_COMP_PLAN_PVT dependencies on CN_COMP_PLAN_PVT
12.2.2
-
APPS.CN_SRP_PAYGROUP_PVT dependencies on FND_GLOBAL
12.1.1
-
PACKAGE BODY: APPS.WMS_WCS_DIAGNOSTICS
12.2.2
-
PACKAGE BODY: APPS.WMS_WCS_DIAGNOSTICS
12.1.1
-
APPS.CN_SRP_PAYGROUP_PVT dependencies on FND_GLOBAL
12.2.2
-
APPS.CN_COMP_PLAN_PVT dependencies on CN_COMP_PLANS
12.1.1
-
APPS.CN_SRP_PLAN_ASSIGNS_PVT dependencies on FND_MSG_PUB
12.2.2