Search Results work_request_asset_num_reqd




Overview

WIP_EAM_PARAMETERS_V is an APPS-owned database view in the Work in Process (WIP) module of Oracle E-Business Suite, documented under ETRM 12.2.2 and applicable to releases 12.1.1 and 12.2.2. Its stated purpose is to expose Enterprise Asset Management (EAM) organization parameters in a denormalized, report-friendly format. Where the underlying table WIP_EAM_PARAMETERS stores foreign keys and coded values, this view resolves those keys into descriptive meanings by joining to lookups, accounting classes, cost elements, and departments.

The view occupies a central role in EAM reporting and integration because it consolidates the operational defaults that govern maintenance work orders for each organization: work request approval behavior, work order prefixes, default maintenance cost categories, accounting classes, departments, and asset-handling flags. For the user search term "eam_cost_element_id," the view is directly relevant: it exposes DEF_EAM_COST_ELEMENT_ID (stored in WIP_EAM_PARAMETERS) alongside EAM_COST_ELEMENT, the descriptive value fetched from CST_EAM_COST_ELEMENTS. This lets consumers retrieve both the identifier and its resolved name in a single query without maintaining their own join logic. Because it is a view rather than a table, it is read-only and inherits the security and synonyms of the APPS schema.

Underlying Base Objects

The view is defined with the following documented base objects, all referenced through APPS synonyms except MFG_LOOKUPS, which is a view:

The outer joins ensure a parameter row is returned even when the cost element, accounting class, or department is not yet defined, with the resolved descriptive columns returned as NULL in those cases.

Key Columns

Common Use Cases and Queries

A frequent requirement is retrieving the default EAM cost element for an organization, which is the scenario implied by the search term "eam_cost_element_id":

  • Configuration validation — confirming that DEF_EAM_COST_ELEMENT_ID is populated and resolves to a valid EAM_COST_ELEMENT for each organization.
  • Integration and interfaces — supplying cost element identifiers to external maintenance or costing systems.
  • Reporting — listing work order prefixes, approval flags, and default departments across organizations.

Representative query for a single organization:

SELECT organization_id, def_eam_cost_element_id, eam_cost_element, def_maint_cost_category, meaning FROM wip_eam_parameters_v WHERE organization_id = :org_id;

To audit rows where the cost element could not be resolved (outer join produced NULL):

SELECT organization_id, def_eam_cost_element_id FROM wip_eam_parameters_v WHERE def_eam_cost_element_id IS NOT NULL AND eam_cost_element IS NULL;

To list EAM-enabled parameters across all organizations:

SELECT organization_id, eam_cost_element, default_department, auto_firm_flag FROM wip_eam_parameters_v ORDER BY organization_id;