Search Results wms_els_individual_tasks_b
Overview
The WMS_ELS_INDIVIDUAL_TASKS_B table resides in the WMS schema and is part of the Oracle Warehouse Management (WMS) product family, specifically the Engineered Labor Standards (ELS) subsystem. Its documented purpose is to store all setup information for individual tasks — the discrete units of labor work that are planned, assigned, executed, and measured within a warehouse. In Oracle EBS 12.1.1 and 12.2.2, this table functions as the base (or "B") definition table that holds the master, language-independent attributes of each individual task record, which downstream runtime processes reference when tracking labor performance against engineered standards.
The ETRM metadata classifies this object heuristically as standalone within a Data Vault modeling suggestion. This means it is not positioned as a pure hub, link, or satellite, but rather behaves as an independent definitional entity keyed by its own identifier, with a single outbound reference to the operation plan structures. In practice, it serves as a hub-like anchor for task setup data, with transaction-scoped and resource-scoped detail tables linking back to it.
Key Information Stored
Each row is uniquely identified by the primary key constraint WMS_ELS_INDIVIDUAL_TASKS_PK, defined on the ELS_DATA_ID column. A separate unique index, WMS_ELS_INDIVIDUAL_TASKS_B_U1, also covers ELS_DATA_ID, making it the singular documented business-key candidate. The table contains 52 documented columns, of which the most operationally significant are:
- ELS_DATA_ID — surrogate primary key and unique identifier for the task setup record.
- ORGANIZATION_ID — warehouse/inventory organization that owns the task definition, critical for multi-org filtering.
- SEQUENCE_NUMBER — ordering of the task within its parent plan.
- ANALYSIS_ID, ACTIVITY_ID, ACTIVITY_DETAIL_ID — the labor analysis and activity decomposition to which the task belongs.
- OPERATION_ID, OPERATION_PLAN_ID — the operation and its plan;
OPERATION_PLAN_IDis the documented foreign key toWMS_OP_PLANS_B. - EQUIPMENT_ID — the material handling equipment associated with the task.
- SOURCE_ZONE_ID, SOURCE_SUBINVENTORY, DESTINATION_ZONE_ID, DESTINATION_SUBINVENTORY — the movement from/to locations.
- LABOR_TXN_SOURCE_ID, TRANSACTION_UOM, FROM_QUANTITY, TO_QUANTITY — the transaction source and the quantity band (from/to) that the standard covers.
- TASK_TYPE_ID, TASK_METHOD_ID — categorical classifiers for the task.
- EXPECTED_TRAVEL_TIME, EXPECTED_TXN_TIME, EXPECTED_IDLE_TIME — engineered standard times used for performance measurement.
- ACTUAL_TRAVEL_TIME, ACTUAL_TXN_TIME, ACTUAL_IDLE_TIME, TRAVEL_TIME_THRESHOLD — executed times and threshold used in variance analysis.
- HISTORY_FLAG, ARCHIVE_DATE, NUM_TRX_MATCHED — lifecycle and matching status indicators.
Common Use Cases and Queries
Typical usage centers on labor standards configuration, performance variance reporting, and task matching. A common query retrieves all setup tasks for an organization and plan:
SELECT ELS_DATA_ID, SEQUENCE_NUMBER, OPERATION_ID, TASK_TYPE_ID, FROM_QUANTITY, TO_QUANTITY, EXPECTED_TXN_TIME FROM WMS_ELS_INDIVIDUAL_TASKS_B WHERE ORGANIZATION_ID = :org_id AND OPERATION_PLAN_ID = :plan_id ORDER BY SEQUENCE_NUMBER;- Variance analysis comparing standard versus actual engineered times:
SELECT ELS_DATA_ID, (ACTUAL_TXN_TIME - EXPECTED_TXN_TIME) variance FROM WMS_ELS_INDIVIDUAL_TASKS_B WHERE TRAVEL_TIME_THRESHOLD IS NOT NULL AND HISTORY_FLAG = 'N'; - Filtering non-archived, active task definitions using
HISTORY_FLAGandARCHIVE_DATE. - Resource and transaction-source matching via joins to
WMS_ELS_EXP_RESOURCEandWMS_ELS_TRX_SRConELS_DATA_ID.
Related Objects
- WMS_OP_PLANS_B — referenced via
OPERATION_PLAN_ID; defines the parent operation plan. - WMS_ELS_EXP_RESOURCE — references this table through
ELS_DATA_ID; holds expected resource assignments. - WMS_ELS_EXP_RESOURCE_GTEMP — global temporary staging for expected resource data linked by
ELS_DATA_ID. - WMS_ELS_TRX_SRC — transaction source mapping referencing
ELS_DATA_ID. - WMS_ELS_INDIVIDUAL_TASKS_TL — the translation table typically paired with the base table for language-dependent attributes (implied by the "_B" suffix convention).
-
Table: WMS_ELS_INDIVIDUAL_TASKS_B
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_ELS_INDIVIDUAL_TASKS_B, object_name:WMS_ELS_INDIVIDUAL_TASKS_B, status:VALID, product: WMS - Warehouse Management , description: This table is for storing all the setup information for the individual tasks. , implementation_dba_data: WMS.WMS_ELS_INDIVIDUAL_TASKS_B ,
-
Table: WMS_ELS_INDIVIDUAL_TASKS_B
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_ELS_INDIVIDUAL_TASKS_B, object_name:WMS_ELS_INDIVIDUAL_TASKS_B, status:VALID, product: WMS - Warehouse Management , description: This table is for storing all the setup information for the individual tasks. , implementation_dba_data: WMS.WMS_ELS_INDIVIDUAL_TASKS_B ,
-
SYNONYM: APPS.WMS_ELS_INDIVIDUAL_TASKS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WMS_ELS_INDIVIDUAL_TASKS_B, status:VALID,
-
SYNONYM: APPS.WMS_ELS_INDIVIDUAL_TASKS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WMS_ELS_INDIVIDUAL_TASKS_B, status:VALID,
-
VIEW: WMS.WMS_ELS_INDIVIDUAL_TASKS_B#
12.2.2
owner:WMS, object_type:VIEW, object_name:WMS_ELS_INDIVIDUAL_TASKS_B#, status:VALID,
-
VIEW: APPS.WMS_ELS_INDIVIDUAL_TASKS_VL
12.2.2
-
VIEW: APPS.WMS_ELS_INDIVIDUAL_TASKS_VL
12.1.1
-
APPS.WMS_LMS_UTILS SQL Statements
12.2.2
-
APPS.WMS_ELS_INDIVIDUAL_TASKS_PKG SQL Statements
12.1.1
-
APPS.WMS_ELS_INDIVIDUAL_TASKS_PKG SQL Statements
12.2.2
-
APPS.WMS_LMS_UTILS SQL Statements
12.1.1
-
VIEW: WMS.WMS_ELS_INDIVIDUAL_TASKS_B#
12.2.2
-
PACKAGE BODY: APPS.WMS_ELS_INDIVIDUAL_TASKS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_ELS_INDIVIDUAL_TASKS_PKG, status:VALID,
-
PACKAGE BODY: APPS.WMS_ELS_INDIVIDUAL_TASKS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_ELS_INDIVIDUAL_TASKS_PKG, status:VALID,
-
PACKAGE BODY: APPS.WMS_LMS_LABOR_PRODUCTIVITY
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_LMS_LABOR_PRODUCTIVITY, status:VALID,
-
PACKAGE BODY: APPS.WMS_LMS_LABOR_PRODUCTIVITY
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_LMS_LABOR_PRODUCTIVITY, status:VALID,
-
PACKAGE BODY: APPS.WMS_LMS_EXPECTED_RES
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_LMS_EXPECTED_RES, status:VALID,
-
PACKAGE BODY: APPS.WMS_LMS_UTILS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_LMS_UTILS, status:VALID,
-
PACKAGE BODY: APPS.WMS_LMS_UTILS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_LMS_UTILS, status:VALID,
-
PACKAGE BODY: APPS.WMS_LMS_EXPECTED_RES
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_LMS_EXPECTED_RES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
View: WMS_ELS_INDIVIDUAL_TASKS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_ELS_INDIVIDUAL_TASKS_VL, object_name:WMS_ELS_INDIVIDUAL_TASKS_VL, status:VALID, product: WMS - Warehouse Management , description: This view represents the MLS database entity WMS_ELS_INDIVIDUAL_TASKS , implementation_dba_data: APPS.WMS_ELS_INDIVIDUAL_TASKS_VL ,
-
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.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
View: WMS_ELS_INDIVIDUAL_TASKS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_ELS_INDIVIDUAL_TASKS_VL, object_name:WMS_ELS_INDIVIDUAL_TASKS_VL, status:VALID, product: WMS - Warehouse Management , description: This view represents the MLS database entity WMS_ELS_INDIVIDUAL_TASKS , implementation_dba_data: APPS.WMS_ELS_INDIVIDUAL_TASKS_VL ,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.WMS_ELS_INDIVIDUAL_TASKS_PKG
12.1.1
-
PACKAGE BODY: APPS.WMS_ELS_INDIVIDUAL_TASKS_PKG
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.WMS_LMS_LABOR_PRODUCTIVITY SQL Statements
12.1.1
-
TABLE: WMS.WMS_ELS_INDIVIDUAL_TASKS_B
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_ELS_INDIVIDUAL_TASKS_B, object_name:WMS_ELS_INDIVIDUAL_TASKS_B, status:VALID,
-
TABLE: WMS.WMS_ELS_INDIVIDUAL_TASKS_B
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_ELS_INDIVIDUAL_TASKS_B, object_name:WMS_ELS_INDIVIDUAL_TASKS_B, status:VALID,
-
APPS.WMS_LMS_LABOR_PRODUCTIVITY SQL Statements
12.2.2
-
PACKAGE: APPS.WMS_LMS_LABOR_PRODUCTIVITY
12.2.2
-
PACKAGE: APPS.WMS_LMS_LABOR_PRODUCTIVITY
12.1.1
-
PACKAGE BODY: APPS.WMS_LMS_UTILS
12.1.1
-
PACKAGE BODY: APPS.WMS_LMS_UTILS
12.2.2
-
VIEW: APPS.WMS_ELS_INDIVIDUAL_TASKS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_ELS_INDIVIDUAL_TASKS_VL, object_name:WMS_ELS_INDIVIDUAL_TASKS_VL, status:VALID,
-
VIEW: APPS.WMS_ELS_INDIVIDUAL_TASKS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_ELS_INDIVIDUAL_TASKS_VL, object_name:WMS_ELS_INDIVIDUAL_TASKS_VL, status:VALID,
-
PACKAGE: APPS.WMS_LMS_EXPECTED_RES
12.2.2
-
PACKAGE: APPS.WMS_LMS_EXPECTED_RES
12.1.1
-
PACKAGE BODY: APPS.WMS_LMS_EXPECTED_RES
12.1.1
-
PACKAGE BODY: APPS.WMS_LMS_EXPECTED_RES
12.2.2
-
APPS.WMS_LMS_UTILS dependencies on WMS_ELS_INDIVIDUAL_TASKS_B
12.2.2
-
APPS.WMS_ELS_INDIVIDUAL_TASKS_PKG dependencies on WMS_ELS_INDIVIDUAL_TASKS_B
12.1.1