Search Results eam_work_order_direct_items_v
Overview
EAM_WORK_ORDER_DIRECT_ITEMS_V is a read-only view owned by the APPS schema in Oracle E-Business Suite, defined over the Enterprise Asset Management (EAM) module. Its documented purpose is to expose the direct item details associated with a work order. In EAM, a work order may require materials that are not defined as inventoried items in the item master; these are known as "direct items" and are typically procured on demand rather than issued from stock. This view consolidates the direct item requirements captured on the work order together with their associated purchasing activity, vendor defaults, and requisition status.
Because it presents procurement, vendor, and requirement data in a single denormalized structure, the view is well suited for reporting, inquiry forms, and integration extracts. It shields consumers from the multi-table joins required to reconstruct direct item demand, making it a convenient source for operational reporting on work order material requirements in both 12.1.1 and 12.2.2.
Underlying Base Objects
The view is defined over both EAM/WIP and Oracle Purchasing base objects. The principal EAM source is WIP_EAM_DIRECT_ITEMS, which stores the direct item lines (description, UOM, unit price, need-by date, suggested vendor, quantity required) attached to a work order. WIP_REQUIREMENT_OPERATIONS supplies the requirement-to-operation association, including the operation sequence number.
Purchasing data is joined through PO_REQUISITION_LINES_ALL and PO_REQUISITION_HEADERS_ALL, which provide the requisition quantity and authorization status used in the SUM aggregations for quantity, quantity delivered, quantity ordered, and quantity cancelled. PO_DISTRIBUTIONS_ALL, PO_LINES_ALL, PO_VENDORS, PO_VENDOR_SITES_ALL, and PO_VENDOR_CONTACTS supply purchasing distribution amounts, order type, and vendor name, site, contact, and phone fallback values. Category and item context is drawn from MTL_ITEM_CATEGORIES, MTL_DEFAULT_CATEGORY_SETS, and MTL_SYSTEM_ITEMS_KFV, while MFG_LOOKUPS resolves the UOM meaning. FND_GLOBAL supplies session context such as organization and user identifiers.
Key Columns
- WIP_ENTITY_ID, OPERATION_SEQ_NUM, ORGANIZATION_ID — identify the work order, the operation sequence the direct item belongs to, and the inventory organization.
- DIRECT_ITEM_SEQUENCE_ID — the unique sequence identifier of the direct item line.
- DESCRIPTION, UOM_CODE, UNIT_PRICE — the free-text description, unit of measure, and price of the direct item.
- QUANTITY_REQUIRED, QUANTITY, QUANTITY_ORDERED, QUANTITY_DELIVERED, QUANTITY_CANCELLED — required versus requisitioned, ordered, delivered, and cancelled quantities.
- NEED_BY_DATE, AUTO_REQUEST_MATERIAL, PURCHASING_CATEGORY_ID — requirement date, auto-request indicator, and purchasing category.
- SUGGESTED_VENDOR_ID/NAME/SITE/CONTACT/PHONE/ITEM_NUM — vendor defaults, with NVL fallbacks to PO vendor, site, and contact views.
- ORDER_TYPE_LOOKUP_CODE, AMOUNT, AMOUNT_DELIVERED, RQL_AMOUNT_ORDERED — ordering and monetary context.
- MEANING — the decoded UOM meaning from MFG_LOOKUPS.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–15 — descriptive flexfield columns for extensibility.
Common Use Cases and Queries
Typical scenarios include listing all direct items on a work order, tracking outstanding procurement against a need-by date, and extracting vendor defaults for downstream purchasing automation.
- List direct items for a work order:
SELECT wip_entity_id, operation_seq_num, description, quantity_required, quantity_ordered, quantity_delivered FROM apps.eam_work_order_direct_items_v WHERE wip_entity_id = :p_wip_entity_id; - Identify items still short of the required quantity:
SELECT wip_entity_id, description, quantity_required, quantity FROM apps.eam_work_order_direct_items_v WHERE NVL(quantity,0) < quantity_required;
- Review vendor defaults for direct items:
SELECT wip_entity_id, description, suggested_vendor_name, suggested_vendor_site, suggested_vendor_phone FROM apps.eam_work_order_direct_items_v;
Because the view is read-only and aggregates purchasing data, consumers should filter by organization and work order for performance and should not expect to update rows through it.
-
View: EAM_WORK_ORDER_DIRECT_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_WORK_ORDER_DIRECT_ITEMS_V, object_name:EAM_WORK_ORDER_DIRECT_ITEMS_V, status:VALID, product: EAM - Enterprise Asset Management , description: View shows direct item details of a work order. , implementation_dba_data: APPS.EAM_WORK_ORDER_DIRECT_ITEMS_V ,
-
SYNONYM: APPS.WIP_EAM_DIRECT_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WIP_EAM_DIRECT_ITEMS, status:VALID,
-
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
-
SYNONYM: APPS.WIP_EAM_DIRECT_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WIP_EAM_DIRECT_ITEMS, status:VALID,
-
VIEW: APPS.EAM_DIRECT_ITEM_RECS_V
12.1.1
-
VIEW: APPS.EAM_DIRECT_ITEM_RECS_V
12.2.2
-
PACKAGE BODY: APPS.EAM_PROCESS_WO_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EAM_PROCESS_WO_PVT, status:VALID,
-
View: EAM_DIRECT_ITEM_RECS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_DIRECT_ITEM_RECS_V, object_name:EAM_DIRECT_ITEM_RECS_V, status:VALID, product: EAM - Enterprise Asset Management , description: View to select both the description based direct items as well as non-stockable inventory items , implementation_dba_data: APPS.EAM_DIRECT_ITEM_RECS_V ,
-
VIEW: APPS.EAM_WORK_ORDER_DIRECT_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_WORK_ORDER_DIRECT_ITEMS_V, object_name:EAM_WORK_ORDER_DIRECT_ITEMS_V, 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.MTL_DEFAULT_CATEGORY_SETS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_DEFAULT_CATEGORY_SETS, status:VALID,
-
VIEW: APPS.EAM_WORK_ORDER_DIRECT_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:EAM_WORK_ORDER_DIRECT_ITEMS_V, status:VALID,
-
SYNONYM: APPS.WIP_REQUIREMENT_OPERATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WIP_REQUIREMENT_OPERATIONS, status:VALID,
-
SYNONYM: APPS.WIP_REQUIREMENT_OPERATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WIP_REQUIREMENT_OPERATIONS, status:VALID,
-
VIEW: APPS.EAM_DIRECT_ITEM_RECS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:EAM_DIRECT_ITEM_RECS_V, status:VALID,
-
SYNONYM: APPS.PO_REQUISITION_HEADERS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_REQUISITION_HEADERS_ALL, status:VALID,
-
VIEW: APPS.PO_VENDOR_CONTACTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDOR_CONTACTS, object_name:PO_VENDOR_CONTACTS, status:VALID,
-
VIEW: APPS.EAM_DIRECT_ITEM_RECS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_DIRECT_ITEM_RECS_V, object_name:EAM_DIRECT_ITEM_RECS_V, status:VALID,
-
APPS.EAM_MAT_REQ_VALIDATE_PVT SQL Statements
12.2.2
-
SYNONYM: APPS.PO_REQUISITION_HEADERS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_REQUISITION_HEADERS_ALL, status:VALID,
-
VIEW: APPS.PO_VENDOR_CONTACTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDOR_CONTACTS, object_name:PO_VENDOR_CONTACTS, status:VALID,
-
APPS.EAM_MAT_REQ_VALIDATE_PVT SQL Statements
12.1.1
-
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 ,
-
SYNONYM: APPS.PO_REQUISITION_LINES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_REQUISITION_LINES_ALL, status:VALID,
-
SYNONYM: APPS.MTL_ITEM_CATEGORIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_ITEM_CATEGORIES, status:VALID,
-
SYNONYM: APPS.MTL_ITEM_CATEGORIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_ITEM_CATEGORIES, status:VALID,
-
APPS.EAM_PROCESS_WO_PVT dependencies on EAM_WORK_ORDER_DIRECT_ITEMS_V
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,
-
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,
-
VIEW: APPS.MFG_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MFG_LOOKUPS, object_name:MFG_LOOKUPS, status:VALID,
-
SYNONYM: APPS.PO_LINES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_LINES_ALL, status:VALID,
-
VIEW: APPS.PO_VENDOR_SITES_ALL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDOR_SITES_ALL, object_name:PO_VENDOR_SITES_ALL, 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,
-
VIEW: APPS.PO_VENDOR_SITES_ALL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDOR_SITES_ALL, object_name:PO_VENDOR_SITES_ALL, 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 ,
-
VIEW: APPS.PO_VENDORS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
VIEW: APPS.PO_VENDORS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
PACKAGE BODY: APPS.EAM_MAT_REQ_VALIDATE_PVT
12.2.2
-
PACKAGE BODY: APPS.EAM_MAT_REQ_VALIDATE_PVT
12.1.1
-
APPS.EAM_PROCESS_WO_PVT SQL Statements
12.1.1
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
APPS.EAM_MAT_REQ_VALIDATE_PVT dependencies on EAM_PROCESS_WO_PVT
12.1.1
-
APPS.EAM_MAT_REQ_VALIDATE_PVT dependencies on EAM_PROCESS_WO_PVT
12.2.2