Search Results responded_on_date
Overview
The APPS.CS_SERVICE_REQUEST_PUB_V view is a public database view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It exposes service request (incident) data from the Oracle TeleService and Customer Care modules in a denormalized, human-readable form that is suitable for custom reporting and integration use. Because it is defined as a public view, Oracle supports its use by custom code for read-only reporting purposes, allowing developers and analysts to query service request information without writing directly against the underlying transactional base tables.
The view consolidates information that would otherwise require multiple joins across incident, party, resource, and inventory tables. It is registered with the FND Design Data as CS.CS_SERVICE_REQUEST_PUB_V, and metadata indicates a VALID status. A key column of interest is INCIDENT_LAST_MODIFIED_DATE, which records the date on which the incident (service request) was last modified — a value commonly used to identify recently changed tickets for incremental reporting or extract processing.
Underlying Base Objects
According to documented view metadata, CS_SERVICE_REQUEST_PUB_V is defined over the following base objects: CSI_ITEM_INSTANCES, CS_INCIDENTS_ALL_TL, CS_INCIDENTS_B_SEC, CS_INCIDENT_SEVERITIES_TL, CS_INCIDENT_STATUSES_TL, CS_INCIDENT_TYPES_TL, CS_INCIDENT_URGENCIES_TL, FND_LOOKUP_VALUES, HZ_CUST_ACCOUNTS, HZ_PARTIES, JTF_RS_GROUPS_TL, JTF_RS_RESOURCE_EXTNS_TL, and MTL_SYSTEM_ITEMS_KFV.
The central transactional source is the CS_INCIDENTS base tables. Column comments confirm that SERVICE_REQUEST_NUMBER, SERVICE_REQUEST_ID, SERVICE_REQUEST_SUMMARY, and OBJECT_VERSION_NUMBER originate from the CS_INCIDENTS_ALL_B table. The _TL tables provide translated, language-specific descriptions for severity, status, type, and urgency, which the view resolves to display-ready text. HZ_CUST_ACCOUNTS and HZ_PARTIES supply customer and party context, while JTF_RS_GROUPS_TL and JTF_RS_RESOURCE_EXTNS_TL resolve group and resource owner names. CSI_ITEM_INSTANCES and MTL_SYSTEM_ITEMS_KFV link service requests to installed items and inventory item numbers.
Key Columns
- ROW_ID and SERVICE_REQUEST_ID: unique identifiers for the service request record.
- SERVICE_REQUEST_NUMBER: the user-visible service request (incident) number.
- SERVICE_REQUEST_SUMMARY: brief textual description of the incident.
- INCIDENT_LAST_MODIFIED_DATE: the date on which the incident was last modified; useful for change tracking.
- REPORTED_DATE, INCIDENT_DATE, RESOLVED_ON_DATE, DATE_CLOSED, RESPONDED_ON_DATE: lifecycle milestone dates.
- RESOLVE_BY_DATE and RESPOND_BY_DATE: service-level target dates.
- STATUS, SEVERITY, URGENCY, SERVICE_REQUEST_TYPE: descriptive classifications resolved from translated lookup tables.
- OPEN_FLAG: indicator of whether the service request is open or closed.
- OWNER_NAME and GROUP_OWNER_NAME: resource and group owner identifications.
- ITEM_NUMBER and ITEM_R: inventory item associated with the incident.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY: standard Who columns.
Common Use Cases and Queries
Typical uses include building custom service request dashboards, extracting incident data to external reporting warehouses, and measuring response or resolution performance against target dates. The INCIDENT_LAST_MODIFIED_DATE column is frequently used to drive incremental extracts.
For example, to retrieve recently modified open service requests:
- SELECT SERVICE_REQUEST_NUMBER, SERVICE_REQUEST_SUMMARY, STATUS, SEVERITY, INCIDENT_LAST_MODIFIED_DATE FROM APPS.CS_SERVICE_REQUEST_PUB_V WHERE OPEN_FLAG = 'Y' AND INCIDENT_LAST_MODIFIED_DATE >= SYSDATE - 7 ORDER BY INCIDENT_LAST_MODIFIED_DATE DESC;
To analyze resolution performance:
- SELECT SERVICE_REQUEST_NUMBER, REPORTED_DATE, RESOLVED_ON_DATE, RESOLVE_BY_DATE FROM APPS.CS_SERVICE_REQUEST_PUB_V WHERE RESOLVED_ON_DATE IS NOT NULL;
Because the view draws on several base objects, queries should be filtered and indexed carefully when used within high-volume reporting processes.
-
VIEW: APPS.CS_SERVICE_REQUEST_PUB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SERVICE_REQUEST_PUB_V, object_name:CS_SERVICE_REQUEST_PUB_V, status:VALID,
-
VIEW: APPS.CS_SERVICE_REQUEST_PUB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SERVICE_REQUEST_PUB_V, object_name:CS_SERVICE_REQUEST_PUB_V, status:VALID,
-
View: CS_SERVICE_REQUEST_PUB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SERVICE_REQUEST_PUB_V, object_name:CS_SERVICE_REQUEST_PUB_V, status:VALID, product: CS - Service , description: Service Request , implementation_dba_data: APPS.CS_SERVICE_REQUEST_PUB_V ,
-
View: CS_SERVICE_REQUEST_PUB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SERVICE_REQUEST_PUB_V, object_name:CS_SERVICE_REQUEST_PUB_V, status:VALID, product: CS - Service , description: Service Request , implementation_dba_data: APPS.CS_SERVICE_REQUEST_PUB_V ,
-
PACKAGE: APPS.CS_SERVICEREQUEST_PUB
12.1.1
-
PACKAGE: APPS.CS_SERVICEREQUEST_PVT
12.1.1
-
PACKAGE: APPS.CS_SERVICEREQUEST_PVT
12.2.2
-
PACKAGE: APPS.CS_SERVICEREQUEST_PUB
12.2.2
-
eTRM - CS Tables and Views
12.1.1
description: Table to store web conference details for an SR. ,
-
eTRM - CS Tables and Views
12.2.2