Search Results actual_resolution




Overview

The view CSS_DEF_DEF_UWQ_V is a denormalized defect reporting view within the Oracle E-Business Suite (EBS) CSS – Support module. It is documented in ETRM metadata for both 12.1.1 and 12.2.2 as belonging to the CSS – Support product, which is flagged as obsolete. The view is not implemented in the reference database from which the metadata was extracted, meaning the definition is published for documentation purposes but the object may be absent from certain environments. Functionally, the view consolidates defect header data with resolved lookup names for severity, priority, status, phase, and problem type, and joins to item and party master data to surface readable product, component, sub-component, platform, and customer identifiers. In practice it serves as a flattened reporting layer for defect records, exposing the "sub_component_number" attribute that users search for as a first-class column rather than requiring joins through inventory item tables.

Underlying Base Objects

The view text references the following base objects:

Although the metadata records no explicitly documented referenced base objects, the view text confirms these relationships. Component, sub-component, and platform item identifiers are resolved through API calls rather than direct table joins.

Key Columns

Common Use Cases and Queries

A typical reporting query retrieves defects associated with a particular sub-component:

  • SELECT defect_number, sub_component_number, component_number, customer_name, status_name FROM css_def_def_uwq_v WHERE sub_component_number = :item;
  • SELECT defect_number, product_number, severity_name, priority_name, date_created FROM css_def_def_uwq_v WHERE customer_number = :cust;
  • SELECT status_name, COUNT(*) FROM css_def_def_uwq_v GROUP BY status_name;

Because the view performs the item and customer resolution itself, it is suited to operational defect dashboards, quality analytics, and feedback integration into the IEU framework. Users should confirm object existence in their environment, as the metadata states it is not implemented in the reference database and CSS – Support is marked obsolete.