Search Results eam_wo_direct_items_lite_v
Overview
The view APPS.EAM_WO_DIRECT_ITEMS_LITE_V is a lightweight reporting view within the Oracle E-Business Suite Enterprise Asset Management (EAM) module. It is documented in ETRM as a slimmed-down variant of the heavier EAM_WORK_ORDER_DIRECT_ITEMS_V view. Its role is to expose the direct items associated with a work order — that is, non-inventory, externally procured items entered against a work order operation — in a form that is cheaper to query than its full-featured counterpart. In EBS 12.1.1 and 12.2.2 the view retains a VALID status in the APPS schema and is intended for reporting, integration, and inquiry purposes where the complete column set of the base view is not required. By projecting a reduced set of columns and otherwise identical join logic, the LITE view reduces the parsing and execution overhead of direct-item reporting. When a user searches for quantity_required in the context of this object, they are searching for the required-quantity column that the view publishes as the alias QUANTITY_REQUIRED.
Underlying Base Objects
The documented ETRM metadata for 12.2.2 lists the following referenced base objects: MFG_LOOKUPS (view), MTL_DEFAULT_CATEGORY_SETS, MTL_ITEM_CATEGORIES, MTL_SYSTEM_ITEMS_KFV, PO_DISTRIBUTIONS_ALL, PO_LINES_ALL, PO_REQUISITION_HEADERS_ALL, PO_REQUISITION_LINES_ALL, WIP_EAM_DIRECT_ITEMS, and WIP_REQUIREMENT_OPERATIONS (all synonyms pointing to their underlying APPS tables). The central base table is WIP_EAM_DIRECT_ITEMS (aliased WED), which stores the direct-item records attached to a WIP entity and operation sequence. It is joined to the purchasing tables — requisition headers/lines, PO lines, and PO distributions (aliased PD) — to aggregate ordered, received, and cancelled quantities. MFG_LOOKUPS supplies the DIRECT_ITEM_TYPE meaning, while the MTL item and category objects and WIP_REQUIREMENT_OPERATIONS support the broader reporting context. The LITE view essentially reuses this join structure but substitutes literal NULL values (for ITEM_ID, ITEM_NAME, EFFECTIVITY_CONTROL, and EAM_ITEM_TYPE) where the full view performs additional item-master lookups.
Key Columns
The columns of primary interest include:
WIP_ENTITY_IDandOPERATION_SEQ_NUM— identify the work order and the routing operation to which the direct item belongs.ORGANIZATION_ID— the inventory organization context.DIRECT_ITEM_SEQUENCE_ID— the unique sequence identifier for the direct item line.ITEM_DESCRIPTION,UOM_CODE, andUNIT_PRICE— descriptive and pricing attributes of the direct item.QUANTITY_REQUIRED— the required quantity, mapped fromWED.REQUIRED_QUANTITY; this is the column matching thequantity_requiredsearch term.QUANTITY_ORDERED,QUANTITY_RECEIVED,RQL_QUANTITY_ORDERED,RQL_QUANTITY_CANCELLED— aggregated purchasing quantities derived fromPO_DISTRIBUTIONS_ALL.PO_QUANTITY_ORDEREDandPO_QUANTITY_CANCELLED— purchase-order-level aggregates.NEED_BY_DATE,AUTO_REQUEST_MATERIAL,SUPPLIER_NAME, andCATEGORY_ID— scheduling and sourcing attributes.DIRECT_ITEM_TYPEandDIRECT_ITEM_TYPE_ID— the lookup meaning and type identifier for the direct item classification.ORDER_TYPE_LOOKUP_CODE,AMOUNT,AMOUNT_DELIVERED,RQL_AMOUNT_ORDERED, andPO_AMOUNT_ORDERED— monetary equivalents of the quantity columns.- The
ATTRIBUTE_CATEGORYandATTRIBUTE1throughATTRIBUTE15— descriptive flexfield context and segments.
Common Use Cases and Queries
The view is typically used to report the direct-material demand against work orders, to reconcile required versus ordered and received quantities, and to feed integration extracts. A representative query selecting the required quantity for a given work order might read:
SELECT wip_entity_id, operation_seq_num, item_description, quantity_required, quantity_ordered, quantity_received FROM apps.eam_wo_direct_items_lite_v WHERE wip_entity_id = :p_wip_entity_id ORDER BY operation_seq_num;SELECT organization_id, wip_entity_id, item_description, quantity_required - quantity_received AS shortfall FROM apps.eam_wo_direct_items_lite_v WHERE quantity_required > NVL(quantity_received,0);SELECT direct_item_type, SUM(quantity_required), SUM(amount) FROM apps.eam_wo_direct_items_lite_v GROUP BY direct_item_type;
Because the view performs aggregation over the purchasing tables, any query that groups or filters on quantity columns should account for the summarized nature of QUANTITY_ORDERED, QUANTITY_RECEIVED, and the PO-level quantities. Where item-master attributes or effectivity control are required, the full EAM_WORK_ORDER_DIRECT_ITEMS_V should be used instead, as the LITE view intentionally returns NULL for those columns.
-
View: EAM_WO_DIRECT_ITEMS_LITE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_WO_DIRECT_ITEMS_LITE_V, object_name:EAM_WO_DIRECT_ITEMS_LITE_V, status:VALID, product: EAM - Enterprise Asset Management , description: This is a light weight version of the view EAM_WORK_ORDER_DIRECT_ITEMS_V. , implementation_dba_data: APPS.EAM_WO_DIRECT_ITEMS_LITE_V ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.EAM_OP_VALIDATE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EAM_OP_VALIDATE_PVT, status:VALID,
-
SYNONYM: APPS.WIP_EAM_DIRECT_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WIP_EAM_DIRECT_ITEMS, status:VALID,
-
SYNONYM: APPS.WIP_EAM_DIRECT_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WIP_EAM_DIRECT_ITEMS, status:VALID,
-
PACKAGE BODY: APPS.EAM_OP_VALIDATE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EAM_OP_VALIDATE_PVT, status:VALID,
-
VIEW: APPS.EAM_DIRECT_ITEMS_RECS_LITE_V
12.1.1
-
VIEW: APPS.EAM_DIRECT_ITEMS_RECS_LITE_V
12.2.2
-
VIEW: APPS.EAM_DIRECT_ITEMS_RECS_LITE_V
12.1.1
owner:APPS, object_type:VIEW, object_name:EAM_DIRECT_ITEMS_RECS_LITE_V, status:VALID,
-
VIEW: APPS.EAM_DIRECT_ITEMS_RECS_LITE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_DIRECT_ITEMS_RECS_LITE_V, object_name:EAM_DIRECT_ITEMS_RECS_LITE_V, status:VALID,
-
VIEW: APPS.EAM_WO_DIRECT_ITEMS_LITE_V
12.1.1
owner:APPS, object_type:VIEW, object_name:EAM_WO_DIRECT_ITEMS_LITE_V, status:VALID,
-
View: EAM_DIRECT_ITEMS_RECS_LITE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_DIRECT_ITEMS_RECS_LITE_V, object_name:EAM_DIRECT_ITEMS_RECS_LITE_V, status:VALID, product: EAM - Enterprise Asset Management , description: This is a light weight version og EAM_DIRECT_ITEMS_RECS_V , implementation_dba_data: APPS.EAM_DIRECT_ITEMS_RECS_LITE_V ,
-
VIEW: APPS.EAM_WO_DIRECT_ITEMS_LITE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_WO_DIRECT_ITEMS_LITE_V, object_name:EAM_WO_DIRECT_ITEMS_LITE_V, status:VALID,
-
SYNONYM: APPS.MTL_DEFAULT_CATEGORY_SETS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_DEFAULT_CATEGORY_SETS, status:VALID,
-
SYNONYM: APPS.MTL_DEFAULT_CATEGORY_SETS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_DEFAULT_CATEGORY_SETS, status:VALID,
-
SYNONYM: APPS.WIP_REQUIREMENT_OPERATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WIP_REQUIREMENT_OPERATIONS, status:VALID,
-
SYNONYM: APPS.WIP_REQUIREMENT_OPERATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WIP_REQUIREMENT_OPERATIONS, status:VALID,
-
SYNONYM: APPS.PO_REQUISITION_HEADERS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_REQUISITION_HEADERS_ALL, status:VALID,
-
SYNONYM: APPS.PO_REQUISITION_HEADERS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_REQUISITION_HEADERS_ALL, status:VALID,
-
APPS.EAM_OP_VALIDATE_PVT SQL Statements
12.1.1
-
SYNONYM: APPS.MTL_ITEM_CATEGORIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_ITEM_CATEGORIES, status:VALID,
-
SYNONYM: APPS.PO_REQUISITION_LINES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_REQUISITION_LINES_ALL, status:VALID,
-
APPS.EAM_OP_VALIDATE_PVT SQL Statements
12.2.2
-
SYNONYM: APPS.MTL_ITEM_CATEGORIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_ITEM_CATEGORIES, status:VALID,
-
PACKAGE BODY: APPS.EAM_OP_VALIDATE_PVT
12.1.1
-
SYNONYM: APPS.PO_REQUISITION_LINES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_REQUISITION_LINES_ALL, status:VALID,
-
APPS.EAM_OP_VALIDATE_PVT dependencies on EAM_WO_DIRECT_ITEMS_LITE_V
12.2.2
-
PACKAGE BODY: APPS.EAM_OP_VALIDATE_PVT
12.2.2
-
APPS.EAM_OP_VALIDATE_PVT dependencies on EAM_WO_DIRECT_ITEMS_LITE_V
12.1.1
-
SYNONYM: APPS.PO_DISTRIBUTIONS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_DISTRIBUTIONS_ALL, status:VALID,
-
SYNONYM: APPS.PO_DISTRIBUTIONS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_DISTRIBUTIONS_ALL, status:VALID,
-
SYNONYM: APPS.PO_LINES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_LINES_ALL, status:VALID,
-
SYNONYM: APPS.PO_LINES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_LINES_ALL, status:VALID,
-
VIEW: APPS.MFG_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MFG_LOOKUPS, object_name:MFG_LOOKUPS, status:VALID,
-
VIEW: APPS.MFG_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MFG_LOOKUPS, object_name:MFG_LOOKUPS, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS_KFV
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS_KFV, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS_KFV
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS_KFV, status:VALID,
-
eTRM - EAM Tables and Views
12.2.2
description: Table for storing workflow item type and keys corresponding to a work order ,
-
eTRM - EAM Tables and Views
12.2.2
description: Table for storing workflow item type and keys corresponding to a work order ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.1.1