Search Results cs_incidents_v
Overview
CS_INCIDENTS_V is an APPS-owned database view in the Oracle E-Business Suite Service (CS) module. It presents service requests (incidents) together with their descriptive attributes and denormalized lookup values, and it is the primary data source used by the main Service Request form in the Oracle Service application. The view is documented as VALID and available in both EBS 12.1.1 and 12.2.2.
From a reporting and integration perspective, CS_INCIDENTS_V is the single most convenient interface to the service request entity. Rather than joining CS_INCIDENTS_ALL_B, its translation table CS_INCIDENTS_ALL_TL, several seeded lookup views, and customer product tables, consumers query this view and receive decoded values such as incident type, status, urgency, severity, and the product revision in a single row. Because the view also exposes the ROWID of the underlying incident record through the ROW_ID column, it can be used as the basis for update-capable custom forms or for correlation logic in interfaces, although Oracle's supported extension path for the Service Request form is the CSICUMPI_PUB package that the view references.
Underlying Base Objects
The ETRM 12.2.2 metadata lists the following referenced objects: CSC_HZ_PARTIES_SELF_V, CSICUMPI_PUB, CS_CP_REVISIONS, CS_CUSTOMER_PRODUCTS, CS_CUSTOMER_PRODUCT_STATUSES, CS_HZ_SR_CONTACT_POINTS, CS_INCIDENTS_ALL_B, CS_INCIDENTS_ALL_TL, CS_INCIDENT_SEVERITIES_VL, CS_INCIDENT_STATUSES_VL, CS_INCIDENT_TYPES_VL, CS_INCIDENT_URGENCIES_VL, CS_LOOKUPS, CS_SR_OWNERS_V, CS_SR_UTIL_PKG, CS_STD, CS_SYSTEMS, FND_GLOBAL, FND_USER, HZ_CONTACT_POINTS, HZ_TIMEZONES, JTF_CUST_ACCOUNTS_ALL_V, JTF_PARTIES_ALL_V, MTL_SYSTEM_ITEMS_KFV, and PER_ALL_PEOPLE_F.
The core table is CS_INCIDENTS_ALL_B, aliased INC, which supplies every incident-level column. Its translation table CS_INCIDENTS_ALL_TL supplies the TL.SUMMARY text. The _VL views decode the incident type, severity, status, and urgency identifiers into their user-visible names. Customer product context comes from CS_CUSTOMER_PRODUCTS, CS_CP_REVISIONS, CS_CUSTOMER_PRODUCT_STATUSES, and CS_SYSTEMS, while party and contact data come from JTF_CUST_ACCOUNTS_ALL_V, JTF_PARTIES_ALL_V, CSC_HZ_PARTIES_SELF_V, HZ_CONTACT_POINTS, and HZ_TIMEZONES. Inventory item descriptions are resolved through MTL_SYSTEM_ITEMS_KFV, employee names through PER_ALL_PEOPLE_F, and the creating user name through FND_USER. CS_STD, CS_SR_UTIL_PKG, CS_SR_OWNERS_V, and CSICUMPI_PUB provide the Service module's security, defaulting, and public API logic.
Key Columns
- INCIDENT_ID, INCIDENT_NUMBER, ROW_ID — primary identifier, the user-facing service request number (repeated as INCIDENT_NUMBER_N), and the underlying row address.
- SUMMARY — the descriptive text of the service request, sourced from CS_INCIDENTS_ALL_TL.
- INCIDENT_TYPE, STATUS_CODE, SEVERITY, URGENCY — decoded attribute names for the corresponding ID columns.
- INVENTORY_ITEM_ID, PRODUCT_REVISION, CURRENT_SERIAL_NUMBER, CURRENT_SERIAL_NUMBER_NV — the product and revision the request is filed against. PRODUCT_REVISION is a column in this view populated from the customer product revision data.
- CUSTOMER_ID, ACCOUNT_ID, EMPLOYEE_ID, EMPLOYEE_NAME, FILED_BY_EMPLOYEE_FLAG — the party who filed the request.
- INCIDENT_DATE, EXPECTED_RESOLUTION_DATE, ACTUAL_RESOLUTION_DATE, RESOLUTION_CODE — key dates and outcome for service level reporting.
- ORG_ID, RECORD_IS_VALID_FLAG, INCIDENT_ATTRIBUTE_1 through 15, INCIDENT_CONTEXT — operating unit, active-record indicator, and the configurable DFF-style attribute segments.
Common Use Cases and Queries
The view supports operational dashboards, SLA and resolution reporting, integration extracts to external CRM or call-center systems, and custom LOVs that need to present open service requests for a given customer or serial number. A typical illustration of the revision column is:
SELECT incident_number, summary, product_revision, current_serial_number, status_code FROM apps.cs_incidents_v WHERE org_id = :p_org_id AND product_revision = :p_revision;SELECT incident_type, COUNT(*) FROM apps.cs_incidents_v WHERE creation_date >= :p_from GROUP BY incident_type;SELECT incident_number, employee_name, expected_resolution_date FROM apps.cs_incidents_v WHERE actual_resolution_date IS NULL AND expected_resolution_date < SYSDATE;
Because the view is defined over the _ALL tables and the security views, functional security and operating unit access are enforced as they are in the Service Request form, which makes it the appropriate source for user-facing queries rather than direct access to CS_INCIDENTS_ALL_B.
-
View: CS_INCIDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_V, object_name:CS_INCIDENTS_V, status:VALID, product: CS - Service , description: Service requests and their attributes. This view is used by the main service request form. , implementation_dba_data: APPS.CS_INCIDENTS_V ,
-
View: CS_INCIDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_V, object_name:CS_INCIDENTS_V, status:VALID, product: CS - Service , description: Service requests and their attributes. This view is used by the main service request form. , implementation_dba_data: APPS.CS_INCIDENTS_V ,
-
PACKAGE: APPS.CS_SR_UTIL_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:CS_SR_UTIL_PKG, status:VALID,
-
SYNONYM: APPS.CS_CP_REVISIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_CP_REVISIONS, status:VALID,
-
SYNONYM: APPS.CS_CP_REVISIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_CP_REVISIONS, status:VALID,
-
APPS.CSD_WF_PROCESS_PVT SQL Statements
12.1.1
-
APPS.CSD_WF_PROCESS_PVT SQL Statements
12.2.2
-
SYNONYM: APPS.CS_CUSTOMER_PRODUCT_STATUSES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_CUSTOMER_PRODUCT_STATUSES, status:VALID,
-
SYNONYM: APPS.CS_CUSTOMER_PRODUCT_STATUSES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_CUSTOMER_PRODUCT_STATUSES, status:VALID,
-
PACKAGE: APPS.CS_SR_UTIL_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:CS_SR_UTIL_PKG, status:VALID,
-
SYNONYM: APPS.CS_SYSTEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_SYSTEMS, status:VALID,
-
SYNONYM: APPS.CS_SYSTEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_SYSTEMS, status:VALID,
-
PACKAGE BODY: APPS.CSD_WF_PROCESS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSD_WF_PROCESS_PVT, status:VALID,
-
PACKAGE BODY: APPS.CS_SR_FUL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_SR_FUL_PKG, status:VALID,
-
PACKAGE BODY: APPS.CS_WORKFLOW_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_WORKFLOW_PKG, status:VALID,
-
PACKAGE BODY: APPS.OKS_CT_EVENTS_WFA
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKS_CT_EVENTS_WFA, status:VALID,
-
PACKAGE BODY: APPS.OKS_CT_EVENTS_WFA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKS_CT_EVENTS_WFA, status:VALID,
-
PACKAGE BODY: APPS.CSC_ROUTING_UTL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSC_ROUTING_UTL, status:VALID,
-
PACKAGE: APPS.CSICUMPI_PUB
12.1.1
owner:APPS, object_type:PACKAGE, object_name:CSICUMPI_PUB, status:VALID,
-
PACKAGE: APPS.CSICUMPI_PUB
12.2.2
owner:APPS, object_type:PACKAGE, object_name:CSICUMPI_PUB, status:VALID,
-
SYNONYM: APPS.HZ_TIMEZONES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_TIMEZONES, status:VALID,
-
PACKAGE BODY: APPS.CSD_ISUP_DEPOT_WF_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSD_ISUP_DEPOT_WF_PVT, status:VALID,
-
PACKAGE BODY: APPS.CS_SR_FUL_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_SR_FUL_PKG, status:VALID,
-
PACKAGE BODY: APPS.CSC_ROUTING_UTL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSC_ROUTING_UTL, status:VALID,
-
SYNONYM: APPS.CS_INCIDENTS_ALL_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENTS_ALL_TL, status:VALID,
-
PACKAGE BODY: APPS.CS_WORKFLOW_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_WORKFLOW_PKG, status:VALID,
-
PACKAGE BODY: APPS.AHL_UMP_SR_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_UMP_SR_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSD_WF_PROCESS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSD_WF_PROCESS_PVT, status:VALID,
-
PACKAGE BODY: APPS.CS_WF_ACTIVITIES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_WF_ACTIVITIES_PKG, status:VALID,
-
SYNONYM: APPS.HZ_TIMEZONES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_TIMEZONES, status:VALID,
-
SYNONYM: APPS.CS_INCIDENTS_ALL_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENTS_ALL_TL, status:VALID,
-
PACKAGE BODY: APPS.AHL_UMP_SR_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_UMP_SR_PVT, status:VALID,
-
PACKAGE BODY: APPS.CS_WF_ACTIVITIES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_WF_ACTIVITIES_PKG, status:VALID,
-
PACKAGE BODY: APPS.CSD_ISUP_DEPOT_WF_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSD_ISUP_DEPOT_WF_PVT, status:VALID,
-
SYNONYM: APPS.CS_HZ_SR_CONTACT_POINTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_HZ_SR_CONTACT_POINTS, status:VALID,
-
APPS.CSD_ISUP_DEPOT_WF_PVT SQL Statements
12.1.1
-
VIEW: APPS.CS_SR_OWNERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_OWNERS_V, object_name:CS_SR_OWNERS_V, status:VALID,
-
View: CS_NEW_INCIDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V, object_name:CS_NEW_INCIDENTS_V, status:VALID, product: CS - Service , description: This is a simplified version of view CS_INCIDENTS_V , implementation_dba_data: APPS.CS_NEW_INCIDENTS_V ,
-
APPS.CS_WORKFLOW_PKG SQL Statements
12.1.1
-
APPS.CS_WORKFLOW_PKG SQL Statements
12.2.2
-
View: CS_NEW_INCIDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V, object_name:CS_NEW_INCIDENTS_V, status:VALID, product: CS - Service , description: This is a simplified version of view CS_INCIDENTS_V , implementation_dba_data: APPS.CS_NEW_INCIDENTS_V ,
-
APPS.CSD_ISUP_DEPOT_WF_PVT SQL Statements
12.2.2
-
VIEW: APPS.CS_SR_OWNERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_OWNERS_V, object_name:CS_SR_OWNERS_V, status:VALID,
-
SYNONYM: APPS.CS_HZ_SR_CONTACT_POINTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_HZ_SR_CONTACT_POINTS, status:VALID,
-
APPS.CSC_ROUTING_UTL SQL Statements
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
APPS.CSC_ROUTING_UTL SQL Statements
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE: APPS.CS_STD
12.1.1
owner:APPS, object_type:PACKAGE, object_name:CS_STD, status:VALID,