Search Results component_description
Overview
CSS_DEF_UWQ_V is a database view shipped within the CSS (Customer Support / Support) product family of Oracle E-Business Suite, documented in ETRM for releases 12.1.1 and 12.2.2. Its stated purpose is to expose defect and bug records in a shape suitable for integration with Universal Work Queue (UWQ), the framework used by Oracle's support and telephony applications to route, prioritize, and dispatch work items to agents. In that capacity the view functions as a reporting and integration contract rather than a transactional entity: external consumers and internal UWQ providers query it to obtain a flattened, human-readable projection of defect data, including status, severity, priority, ownership, and lifecycle attributes, without having to join the underlying normalized defect tables themselves.
The ETRM metadata records the product as "CSS - Support (obsolete)" and explicitly notes "Not implemented in this database." This is an important qualification. The view belongs to an older support/defect-tracking data model, and in many 12.1.1 and 12.2.2 environments it is either absent, invalid, or retained only for backward compatibility. The user search term phase_owner_id corresponds directly to a column in this view, which suggests the search originated from a query or integration mapping that referenced defect phase ownership.
Underlying Base Objects
The documented view text defines CSS_DEF_UWQ_V entirely over a single base view, CSS_DEF_DEFECTS_ALL_V. No base tables are documented for CSS_DEF_UWQ_V, and ETRM's "Referenced base objects" field lists none. The projection is a direct column selection with aliasing only; there is no WHERE clause, aggregation, or join in the outer definition.
CSS_DEF_DEFECTS_ALL_V— the sole documented source object, itself a view over the CSS defect schema and the layer where the actual table joins (defects, lookups, item master, users) are resolved.- All column names in CSS_DEF_UWQ_V are inherited one-for-one from the base view, with three cosmetic aliases applied:
PRODUCT_ITEM_NAMEasPRODUCT_DESCRIPTION,COMPONENT_ITEM_NAMEasCOMPONENT_DESCRIPTION, andPLANNED_BY_ITEM_VERSIONasFIX_BY_REVISION_DESC.
Key Columns
DEFECT_ID— primary identifier of the defect; the join key for any drill-down to detail.DEFECT_NUMBER— the user-facing defect or bug number.STATUS_NAME,PHASE_NAME,LIFE_CYCLE_MEANING— workflow state descriptors used for queue routing and aging analysis.SEVERITY_NAME,PRIORITY_NAME,ESCALATION_LEVEL_CODE— triage attributes consumed by UWQ prioritization rules.DEV_OWNER_ID,PHASE_OWNER_ID— the development owner and the owner of the current lifecycle phase, respectively.PHASE_OWNER_IDis the column associated with the user's search and is the linkage used to assign a work item to the agent responsible for the active phase.PRODUCT_DESCRIPTION,COMPONENT_DESCRIPTION,SUB_COMP_DESCRIPTION,FIX_BY_REVISION_DESC— descriptive context for the product, component, sub-component, and target fix revision.SUMMARY,FILER_NAME,FILED_DATE— free-text description and creation audit information.UI_DEFECT_MEANING,FUNC_DEFECT_MEANING,PLATFORM_SPECIFIC_MEANING— classification flags distinguishing user-interface, functional, and platform-specific defects.
Common Use Cases and Queries
Typical usage is to feed UWQ dispatch logic or to produce defect ownership reports by phase owner. A representative query isolating defects for a given phase owner is:
SELECT defect_number, summary, status_name, severity_name, priority_name, phase_name FROM css_def_uwq_v WHERE phase_owner_id = :owner_id AND status_name <> 'Closed' ORDER BY priority_name, filed_date;- Open-defect inventory by product and severity:
SELECT product_description, severity_name, COUNT(*) FROM css_def_uwq_v GROUP BY product_description, severity_name; - Escalation review:
SELECT defect_number, escalation_level_code, phase_owner_id, filed_date FROM css_def_uwq_v WHERE escalation_level_code IS NOT NULL; - Fix-revision reporting:
SELECT fix_by_revision_desc, COUNT(*) FROM css_def_uwq_v GROUP BY fix_by_revision_desc;
Because ETRM records the view as obsolete and not implemented in the reference database, consumers should verify existence and validity with DBA_OBJECTS and DBA_VIEWS before relying on it, and treat any dependency on PHASE_OWNER_ID as legacy integration surface.
-
View: CSS_DEF_UWQ_V
12.1.1
product: CSS - Support (obsolete) , description: This view stores information for integrating with Universal Work Que , implementation_dba_data: Not implemented in this database ,
-
VIEW: SYS.REPORT_COMPONENTS
12.1.1
-
VIEW: APPS.ASO_SUP_COMP_RESP_MAP_V
12.2.2
-
View: ASO_SUP_COMP_RESP_MAP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_SUP_COMP_RESP_MAP_V, object_name:ASO_SUP_COMP_RESP_MAP_V, status:VALID, product: ASO - Order Capture , implementation_dba_data: APPS.ASO_SUP_COMP_RESP_MAP_V ,
-
View: ASO_SUP_COMP_RESP_MAP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_SUP_COMP_RESP_MAP_V, object_name:ASO_SUP_COMP_RESP_MAP_V, status:VALID, product: ASO - Order Capture , implementation_dba_data: APPS.ASO_SUP_COMP_RESP_MAP_V ,
-
View: CSS_DEF_UWQ_V
12.2.2
product: CSS - Support (Obsolete) , description: This view stores information for integrating with Universal Work Que , implementation_dba_data: Not implemented in this database ,
-
VIEW: SYS.REPORT_COMPONENTS
12.2.2
-
View: WIP_EXPLOSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EXPLOSIONS_V, object_name:WIP_EXPLOSIONS_V, status:VALID, product: WIP - Work in Process , description: WIP explosion information , implementation_dba_data: APPS.WIP_EXPLOSIONS_V ,
-
VIEW: APPS.ASO_SUP_COMP_RESP_MAP_V
12.1.1
-
View: CSS_DEF_ENH_UWQ_V
12.2.2
product: CSS - Support (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: WIP_EXPLOSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EXPLOSIONS_V, object_name:WIP_EXPLOSIONS_V, status:VALID, product: WIP - Work in Process , description: WIP explosion information , implementation_dba_data: APPS.WIP_EXPLOSIONS_V ,
-
VIEW: SYS.REPORT_COMPONENTS
12.2.2
owner:SYS, object_type:VIEW, object_name:REPORT_COMPONENTS, status:VALID,
-
VIEW: SYS.REPORT_COMPONENTS
12.1.1
owner:SYS, object_type:VIEW, object_name:REPORT_COMPONENTS, status:VALID,
-
View: CSS_DEF_DEF_UWQ_V
12.1.1
product: CSS - Support (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: CSS_DEF_ENH_UWQ_V
12.1.1
product: CSS - Support (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: CSS_DEF_DEF_UWQ_V
12.2.2
product: CSS - Support (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.WIP_EXPLOSIONS_V
12.2.2
-
VIEW: APPS.WIP_ICX_COMPONENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_ICX_COMPONENTS_V, object_name:WIP_ICX_COMPONENTS_V, status:VALID,
-
VIEW: APPS.WIP_ICX_COMPONENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_ICX_COMPONENTS_V, object_name:WIP_ICX_COMPONENTS_V, status:VALID,
-
VIEW: APPS.WIP_EXPLOSIONS_V
12.1.1
-
VIEW: APPS.WIP_EXPLOSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EXPLOSIONS_V, object_name:WIP_EXPLOSIONS_V, status:VALID,
-
VIEW: APPS.WIP_EXPLOSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EXPLOSIONS_V, object_name:WIP_EXPLOSIONS_V, status:VALID,
-
View: IEU_UWQ_DEFECTS_V
12.2.2
product: IEU - Universal Work Queue , description: View used for UWQ selector SpreadTable. , implementation_dba_data: Not implemented in this database ,
-
View: IEU_UWQ_DEFECTS_V
12.1.1
product: IEU - Universal Work Queue , description: View used for UWQ selector SpreadTable. , implementation_dba_data: Not implemented in this database ,
-
View: WIP_ICX_COMPONENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_ICX_COMPONENTS_V, object_name:WIP_ICX_COMPONENTS_V, status:VALID, product: WIP - Work in Process , description: Component information for job/schedule operations , implementation_dba_data: APPS.WIP_ICX_COMPONENTS_V ,
-
View: CSS_BRM_3D_DEFECT_V
12.1.1
product: CSS - Support (obsolete) , description: 3D defect view as used by business rule monitor , implementation_dba_data: Not implemented in this database ,
-
View: WIP_ICX_COMPONENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_ICX_COMPONENTS_V, object_name:WIP_ICX_COMPONENTS_V, status:VALID, product: WIP - Work in Process , description: Component information for job/schedule operations , implementation_dba_data: APPS.WIP_ICX_COMPONENTS_V ,
-
View: CSS_BRM_3D_DEFECT_V
12.2.2
product: CSS - Support (Obsolete) , description: 3D defect view as used by business rule monitor , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.ASO_SUP_COMP_RESP_MAP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_SUP_COMP_RESP_MAP_V, object_name:ASO_SUP_COMP_RESP_MAP_V, status:VALID,
-
VIEW: APPS.ASO_SUP_COMP_RESP_MAP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_SUP_COMP_RESP_MAP_V, object_name:ASO_SUP_COMP_RESP_MAP_V, status:VALID,
-
VIEW: APPS.BOM_IMPLOSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_IMPLOSIONS_V, object_name:BOM_IMPLOSIONS_V, status:VALID,
-
VIEW: APPS.BOM_IMPLOSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_IMPLOSIONS_V, object_name:BOM_IMPLOSIONS_V, status:VALID,
-
View: CSS_DEF_DEFECTS_ALL_NO_RES_V
12.1.1
product: CSS - Support (obsolete) , description: Defect information without resource information , implementation_dba_data: Not implemented in this database ,
-
View: CSS_DEF_DEFECTS_ALL_NO_RES_V
12.2.2
product: CSS - Support (Obsolete) , description: Defect information without resource information , implementation_dba_data: Not implemented in this database ,
-
View: CSS_DEF_DEFECTS_ALL_V
12.1.1
product: CSS - Support (obsolete) , description: Defect information , implementation_dba_data: Not implemented in this database ,
-
View: BOM_IMPLOSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_IMPLOSIONS_V, object_name:BOM_IMPLOSIONS_V, status:VALID, product: BOM - Bills of Material , description: View for displaying BOM implosions , implementation_dba_data: APPS.BOM_IMPLOSIONS_V ,
-
View: CSS_DEF_DEFECTS_ALL_V
12.2.2
product: CSS - Support (Obsolete) , description: Defect information , implementation_dba_data: Not implemented in this database ,
-
View: BOM_IMPLOSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_IMPLOSIONS_V, object_name:BOM_IMPLOSIONS_V, status:VALID, product: BOM - Bills of Material , description: View for displaying BOM implosions , implementation_dba_data: APPS.BOM_IMPLOSIONS_V ,
-
PACKAGE BODY: APPS.CS_SR_FUL_PKG
12.1.1
-
PACKAGE BODY: APPS.CS_SR_FUL_PKG
12.2.2
-
APPS.CS_SR_FUL_PKG dependencies on JTF_FM_REQUEST_GRP
12.1.1
-
APPS.CS_SR_FUL_PKG dependencies on JTF_FM_REQUEST_GRP
12.2.2
-
eTRM - WIP Tables and Views
12.1.1
-
eTRM - WIP Tables and Views
12.2.2
-
eTRM - ASO Tables and Views
12.2.2
description: This tables is used to log messages during the migration in Order Capture. ,
-
eTRM - ASO Tables and Views
12.1.1
description: This tables is used to log messages during the migration in Order Capture. ,
-
eTRM - BOM Tables and Views
12.2.2
description: Table to map wip transactions to their corresponding event types. ,
-
eTRM - BOM Tables and Views
12.1.1
description: Table to map wip transactions to their corresponding event types. ,