Search Results wip_entity




Overview

The APPS.WIP_EAM_ENTITIES_V view is an Oracle Work in Process (WIP) reporting construct that consolidates Enterprise Asset Management (EAM) work order information into a single, denormalized result set. It exposes work order header attributes drawn from WIP_ENTITIES and WIP_DISCRETE_JOBS, enriched with lookup meanings, item definitions, asset instance details, department codes, and user-defined work order status. Because EAM work orders are stored as WIP entities of type 6 and 7, the view filters on those entity types, restricting its output to EAM-specific activities rather than standard discrete manufacturing jobs.

In Oracle EBS 12.1.1 and 12.2.2 the view serves as a reporting and integration layer. Developers building custom reports, Discoverer workbooks, or interfaces against EAM data can query a single view rather than joining a dozen base tables. Its DISTINCT semantics and UNION ALL composition reflect a design intent to present asset-related work orders uniformly, including estimated and rebuilt item scenarios. The view is owned by APPS and is marked VALID in the ETRM repository.

Underlying Base Objects

The documented referenced base objects include WIP_ENTITIES and WIP_DISCRETE_JOBS (both accessed via synonyms), which supply the core work order header and discrete job attributes. Item context is derived from MTL_SYSTEM_ITEMS_B (synonym) and MTL_SYSTEM_ITEMS_B_KFV, a key flexfield view providing concatenated item identification. Asset instance detail comes from CSI_ITEM_INSTANCES, joined to associate the maintenance object with its installed base record. Organization-level maintenance parameters are resolved through MTL_PARAMETERS.

Decoding of entity type and estimation status is performed against MFG_LOOKUPS (a view over lookup values). Department ownership is resolved via BOM_DEPARTMENTS. The EAM_WORK_ORDER_DETAILS_V view supplies user-defined status identifiers and work order status text, while FND_MESSAGE (a package) is referenced for message retrieval. The joins are predominantly outer joins on item and department, ensuring work orders without complete item or department references still appear.

Key Columns

Common Use Cases and Queries

Typical scenarios include EAM work order status reporting, asset maintenance history, and maintenance cost or estimation tracking. A representative query lists open work orders for an organization:

  • SELECT wip_entity_name, work_order_status, department_code FROM wip_eam_entities_v WHERE organization_id = :org AND date_closed IS NULL;
  • SELECT instance_number, serial_number, primary_item_id, estimation_status_meaning FROM wip_eam_entities_v WHERE entity_type = 6;
  • SELECT wip_entity_id, asset_group_id, class_code, rebuild_item_id FROM wip_eam_entities_v WHERE date_closed BETWEEN :from AND :to;

Because the view performs DISTINCT with UNION ALL branches, queries returning many rows across large organizations may benefit from filtering on ORGANIZATION_ID, WIP_ENTITY_ID, or DATE_CLOSED to constrain the underlying joins.