Search Results wms_els_activities
Overview
APPS.WMS_ELS_GROUPED_TASKS_VL is a multilingual (MLS) language-resolved view in the Oracle E-Business Suite Warehouse Management System (WMS) module. It exposes the grouped task setup configuration used by the Engineered Labor Standards (ELS) framework, presenting the underlying base entity WMS_ELS_GROUPED_TASKS in a translated, view-friendly form. The view is owned by the APPS schema, registered under FND Design Data as WMS.WMS_ELS_GROUPED_TASKS_VL, and carries a VALID status in both release 12.1.1 and 12.2.2. Because it is a language-resolved view, it returns the translated (TL) descriptive columns joined to the base (B) columns, allowing applications and reports called from any language session to display descriptions in the user's session language without explicit translation joins.
This view is the primary access point for reporting, integration, and inquiry on the rules that group warehouse labor tasks together for Engineered Labor Standards processing. The user's search term, "wms_els_activity_details," maps directly to a column on this view (ACTIVITY_DETAIL_ID), and the related lookup type WMS_ELS_ACTIVITY_DETAILS, indicating that the searcher is investigating how activity details are used within grouped task definitions.
Underlying Base Objects
The ETRM metadata documents that the view is defined over two underlying objects:
- WMS_ELS_GROUPED_TASKS_B (SYNONYM) — the base table that stores the non-translatable columns, including identifiers, organization, sequence, activity and operation references, zone and subinventory values, task ranges, group size, and travel time measures.
- WMS_ELS_GROUPED_TASKS_TL (SYNONYM) — the translation table that stores language-specific descriptive columns keyed by the same primary identifier (ELS_GROUP_ID).
WMS_ELS_GROUPED_TASKS_VL joins the _B and _TL objects on the primary key so that, for the current session language, descriptive (translated) attributes are returned alongside the base data. This is the standard MLS view pattern in Oracle EBS and explains why the view is designated a "MultiLingual view (a language resolved view of the data)." The Synonyms referenced are the APPS-layer synonyms that point to the WMS schema base tables.
Key Columns
The view exposes a mix of identifying, configuration, and metric columns. The most significant are:
- ELS_GROUP_ID — unique identifier for the setup row (primary key).
- ORGANIZATION_ID — the organization for which the grouped task setup is defined; all queries should be scoped by organization.
- SEQUENCE_NUMBER — preference order for matching setup rows against labor-tracked transactions and expected work; lower values take higher precedence.
- ACTIVITY_ID — identifier sourced from lookup type WMS_ELS_ACTIVITIES.
- ACTIVITY_DETAIL_ID — identifier sourced from lookup type WMS_ELS_ACTIVITY_DETAILS; this column corresponds to the "wms_els_activity_details" search term and ties grouped task definitions to a specific activity detail value.
- OPERATION_ID — identifier sourced from lookup type WMS_ELS_OPERATIONS.
- LABOR_TXN_SOURCE_ID — the labor transaction source, from lookup type WMS_LABOR_TRX_TYPES.
- SOURCE_ZONE_ID, SOURCE_SUBINVENTORY, DESTINATION_ZONE_ID, DESTINATION_SUBINVENTORY — the physical routing context the group applies to.
- TASK_METHOD_ID — the task method (from lookup type WMS_ELS_TASK_METHODS).
- TASK_RANGE_FROM, TASK_RANGE_TO, GROUP_SIZE — the numeric range and size governing the group.
- EXPECTED_TRAVEL_TIME, ACTUAL_TRAVEL_TIME — travel-time metrics for the grouped tasks.
- LAST_UPDATED_BY — standard WHO audit column.
Common Use Cases and Queries
Typical uses include validating ELS grouped-task setup, diagnosing why labor standards are not matching expected work, and extracting configuration for audit or migration. A common need is to resolve the ACTIVITY_DETAIL_ID to its lookup meaning. For example:
SELECT g.els_group_id,
g.organization_id,
g.sequence_number,
g.activity_id,
fl.meaning AS activity_meaning,
g.activity_detail_id,
g.operation_id,
g.group_size,
g.expected_travel_time
FROM apps.wms_els_grouped_tasks_vl g,
fnd_lookup_values_vl fl
WHERE fl.lookup_type = 'WMS_ELS_ACTIVITY_DETAILS'
AND fl.lookup_code = TO_CHAR(g.activity_detail_id)
AND g.organization_id = :org_id
ORDER BY g.sequence_number;
Other scenarios include filtering by source and destination zone to confirm routing coverage, or comparing EXPECTED_TRAVEL_TIME against ACTUAL_TRAVEL_TIME to evaluate labor standard accuracy. Because the view is language-resolved, consumers should query it (rather than the _B table) whenever translated descriptions are required in reports or integrations.
-
Lookup Type: WMS_ELS_ACTIVITIES
12.2.2
product: WMS - Warehouse Management , meaning: WMS_ELS_ACTIVITIES , description: Labor Management System Activities ,
-
Lookup Type: WMS_ELS_ACTIVITIES
12.1.1
product: WMS - Warehouse Management , meaning: WMS_ELS_ACTIVITIES , description: Labor Management System Activities ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.WMS_ELS_GROUPED_TASKS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_ELS_GROUPED_TASKS_VL, object_name:WMS_ELS_GROUPED_TASKS_VL, status:VALID,
-
TABLE: WMS.WMS_ELS_GROUPED_TASKS_B
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_ELS_GROUPED_TASKS_B, object_name:WMS_ELS_GROUPED_TASKS_B, status:VALID,
-
TABLE: WMS.WMS_ELS_GROUPED_TASKS_B
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_ELS_GROUPED_TASKS_B, object_name:WMS_ELS_GROUPED_TASKS_B, status:VALID,
-
TABLE: WMS.WMS_ELS_EXP_RESOURCE
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_ELS_EXP_RESOURCE, object_name:WMS_ELS_EXP_RESOURCE, status:VALID,
-
VIEW: APPS.WMS_ELS_GROUPED_TASKS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_ELS_GROUPED_TASKS_VL, object_name:WMS_ELS_GROUPED_TASKS_VL, status:VALID,
-
TABLE: WMS.WMS_ELS_EXP_RESOURCE
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_ELS_EXP_RESOURCE, object_name:WMS_ELS_EXP_RESOURCE, 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,
-
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,
-
TABLE: WMS.WMS_ELS_TRX_SRC
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_ELS_TRX_SRC, object_name:WMS_ELS_TRX_SRC, status:VALID,
-
TABLE: WMS.WMS_ELS_TRX_SRC
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_ELS_TRX_SRC, object_name:WMS_ELS_TRX_SRC, status:VALID,
-
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,
-
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,
-
PACKAGE: APPS.WMS_LMS_UTILS
12.1.1
-
PACKAGE: APPS.WMS_LMS_UTILS
12.2.2
-
eTRM - WMS Tables and Views
12.2.2
-
eTRM - WMS Tables and Views
12.1.1