Search Results actual_resolution_date




Overview

CSF_SR_HIST_V is a service history extension view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the CSF (Field Service) product family. It is documented as the "Service History Extension View" and exposes a flattened, reporting-oriented projection of service request (SR) incident data. Rather than presenting raw transactional rows, the view joins the core incident entity in CS_INCIDENTS_ALL_B with its translated lookups, customer product references, contact points, item master descriptions, and timezone information, producing a single denormalized result set suitable for extraction, operational reporting, and downstream integration.

Because the view resolves translated names (type, severity, status, urgency) at query time using USERENV('LANG'), it returns language-appropriate descriptions for the session. It is read-only in practice and should be treated as a reporting artifact rather than a DML target. In 12.1.1 and 12.2.2 the object is listed as VALID, so it can be relied upon by custom concurrent programs, BI Publisher data templates, and OBIEE/OTBI extracts without recompilation.

Underlying Base Objects

The ETRM metadata lists the following referenced base objects:

The view is therefore centered on CS_INCIDENTS_ALL_B; all other objects are joined to enrich the incident row with descriptive and relational context. Note that CP.REFERENCE_NUMBER in the view text originates from the customer product source, and INC.CUSTOMER_PRODUCT_ID is the join vector.

Key Columns

Common Use Cases and Queries

Typical usage includes SR aging reports, status/severity dashboards, and integration extracts feeding data warehouses. A representative query:

SELECT INCIDENT_NUMBER, STATUS_CODE, SEVERITY, INCIDENT_TYPE, SUMMARY, REFERENCE_NUMBER FROM APPS.CSF_SR_HIST_V WHERE ORG_ID = :p_org AND INCIDENT_DATE >= :p_from_date ORDER BY INCIDENT_DATE DESC;

Filtering by INCIDENT_SEVERITY_ID or STATUS_CODE supports SLA monitoring, while joins on CUSTOMER_PRODUCT_ID or REFERENCE_NUMBER enable installed-base analysis. Because translations are resolved dynamically, consumers should run extracts under a session language consistent with the target audience.