Search Results product_description




Overview

The view XNS_INCIDENTS_WORKFLOW_V belongs to the XNS – Service for Communications product family, which is documented in Oracle ETRM as obsolete. Its stated purpose is to expose service requests (incidents) together with their descriptive attributes for consumption by the Communications workflow. The view provides a denormalized, workflow-oriented projection of service request records, joining the incident header to its type, severity, status, urgency, owner, customer, product, and lookup-based problem and resolution codes, and resolving the creating user to a login name.

The column EXPECTED_RESOLUTION_DATE, which is the likely target of a user searching this object, is sourced directly from the base service request table and represents the target or committed resolution date for the incident. Because the view is not implemented in the reference database and is marked obsolete in 12.1.1 and 12.2.2, it should be treated as a legacy integration artifact rather than a supported reporting interface. Implementations still referencing it will generally be found in older Communications or TeleService-related workflow customizations.

Underlying Base Objects

The ETRM metadata records no documented referenced base objects, indicating the view is not implemented in the shipped database. The view text nevertheless defines its dependencies explicitly. It is constructed over the following base objects:

Nearly all joins to the descriptive objects are outer joins, so incidents survive even where severity, urgency, customer, or product data is absent.

Key Columns

Common Use Cases and Queries

The view was intended for workflow routing and notification, where a Communications workflow needed a single row containing all classification, ownership, and resolution-date attributes. Typical queries retrieve incidents approaching or past their expected resolution date:

  • Filter on EXPECTED_RESOLUTION_DATE to drive escalation or aging reports.
  • Group by OWNER, SEVERITY, or STATUS_CODE to assess workload or bottlenecks.
  • Join results to FND or HR data using INCIDENT_OWNER_ID for routing decisions.

A representative query is:

SELECT INCIDENT_NUMBER, SUMMARY, OWNER, SEVERITY, STATUS_CODE, EXPECTED_RESOLUTION_DATE
FROM XNS_INCIDENTS_WORKFLOW_V
WHERE TRUNC(EXPECTED_RESOLUTION_DATE) <= TRUNC(SYSDATE)
AND STATUS_CODE NOT IN ('Closed', 'Cancelled');

Because the object is obsolete and absent from the database in current 12.2.2 environments, equivalent reporting should be built directly against CS_INCIDENTS_ALL_VL and the associated CS lookup views.