Search Results cs_incident_types_rg_v
Overview
CS_INCIDENT_TYPES_RG_V is a PL/SQL view owned by the APPS schema within the Oracle E-Business Suite Service (CS) module. Its documented purpose is to return service request types for a list of values (LOV) on the main service request form. In practice, this view serves as the data source that populates the incident type selector presented to users when creating or updating a service request, filtering and formatting the underlying type definitions so that the LOV displays meaningful, workflow-aware descriptions rather than raw identifiers.
Beyond its role in the concurrent form UI, the view is a useful reporting and integration artifact. Because it resolves workflow display names and related-status counts at query time, it enables reporting layers, custom forms, and external interfaces to present service request types with human-readable context without re-implementing the same lookup logic. The view is marked VALID in the documented metadata, confirming that it compiles successfully against its dependencies in both EBS 12.1.1 and 12.2.2 environments.
Underlying Base Objects
The view is defined over three documented referenced objects:
- CS_INCIDENT_TYPES_VL (VIEW) — the primary source. This is the multi-language view that supplies the base incident type rows, including identifiers, names, subtypes, dates, and workflow references. The RG view layers additional derived columns on top of it.
- CS_SR_UTIL_PKG (PACKAGE) — used through the function GET_RELATED_STATUSES_CNT to compute the number of related statuses for each incident type.
- CS_WORKFLOW_PKG (PACKAGE) — used through GET_WORKFLOW_DISP_NAME to translate workflow internal names into display names for the task, service request, and web workflows.
The SELECT statement references CS_INCIDENT_TYPES_VL as the driving row source and joins no additional tables directly; the package functions are invoked per row, so the view is functionally dependent on both packages being valid and accessible in the APPS schema.
Key Columns
The view exposes eighteen columns. The most significant include:
- INCIDENT_TYPE_ID — primary key of the service request type; the value typically bound by the LOV.
- NAME and DESCRIPTION — the display label and descriptive text for the type.
- INCIDENT_SUBTYPE — distinguishes subtypes such as 'ACT' (action) that influence which workflow display logic applies.
- PARENT_INCIDENT_TYPE_ID — supports hierarchical type structures.
- START_DATE_ACTIVE / END_DATE_ACTIVE — effective dating that determines whether a type is currently selectable.
- WORKFLOW, TASK_WORKFLOW, WEB_WORKFLOW — internal workflow identifiers, paired with TASK_WORKFLOW_DISPLAY_NAME, DISPLAY_NAME, and WEB_DISPLAY_NAME, which resolve those identifiers into readable labels via CS_WORKFLOW_PKG.
- RELATED_STATUSES_CNT — a count derived from CS_SR_UTIL_PKG.GET_RELATED_STATUSES_CNT, useful for determining whether a type has associated statuses.
- STATUS_GROUP_ID, MAINTENANCE_FLAG, CMRO_FLAG — supporting attributes for grouping statuses and flagging maintenance or CMRO applicability.
Common Use Cases and Queries
Typical uses include validating service request type availability for integrations, reporting on which types are active, and building custom LOVs. A simple reporting query follows:
SELECT incident_type_id, name, display_name, related_statuses_cnt FROM apps.cs_incident_types_rg_v WHERE TRUNC(SYSDATE) BETWEEN start_date_active AND NVL(end_date_active, SYSDATE + 1);
To list only types that currently have related statuses:
SELECT incident_type_id, name, related_statuses_cnt FROM apps.cs_incident_types_rg_v WHERE related_statuses_cnt > 0;
Because the view calls package functions per row, queries over large result sets should be filtered on active dates or identifiers before invoking the display-name logic, and callers should ensure CS_WORKFLOW_PKG and CS_SR_UTIL_PKG are valid to avoid runtime errors.
-
View: CS_INCIDENT_TYPES_RG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENT_TYPES_RG_V, object_name:CS_INCIDENT_TYPES_RG_V, status:VALID, product: CS - Service , description: Returns service request types for an LOV on main service request form. , implementation_dba_data: APPS.CS_INCIDENT_TYPES_RG_V ,
-
View: CS_INCIDENT_TYPES_RG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENT_TYPES_RG_V, object_name:CS_INCIDENT_TYPES_RG_V, status:VALID, product: CS - Service , description: Returns service request types for an LOV on main service request form. , implementation_dba_data: APPS.CS_INCIDENT_TYPES_RG_V ,
-
PACKAGE: APPS.CS_SR_UTIL_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:CS_SR_UTIL_PKG, status:VALID,
-
PACKAGE: APPS.CS_SR_UTIL_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:CS_SR_UTIL_PKG, status:VALID,
-
PACKAGE: APPS.CS_WORKFLOW_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:CS_WORKFLOW_PKG, status:VALID,
-
PACKAGE: APPS.CS_WORKFLOW_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:CS_WORKFLOW_PKG, status:VALID,
-
APPS.CS_SR_UTIL_PKG SQL Statements
12.2.2
-
APPS.CS_SR_UTIL_PKG SQL Statements
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.CS_INCIDENT_TYPES_RG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENT_TYPES_RG_V, object_name:CS_INCIDENT_TYPES_RG_V, status:VALID,
-
VIEW: APPS.CS_INCIDENT_TYPES_RG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENT_TYPES_RG_V, object_name:CS_INCIDENT_TYPES_RG_V, status:VALID,
-
VIEW: APPS.CS_INCIDENT_TYPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENT_TYPES_VL, object_name:CS_INCIDENT_TYPES_VL, status:VALID,
-
PACKAGE BODY: APPS.CS_SR_UTIL_PKG
12.1.1
-
PACKAGE BODY: APPS.CS_SR_UTIL_PKG
12.2.2
-
VIEW: APPS.CS_INCIDENT_TYPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENT_TYPES_VL, object_name:CS_INCIDENT_TYPES_VL, status:VALID,
-
APPS.CS_SR_UTIL_PKG dependencies on CS_INCIDENT_TYPES_RG_V_SEC
12.2.2
-
APPS.CS_SR_UTIL_PKG dependencies on CS_INCIDENT_TYPES_RG_V_SEC
12.1.1
-
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
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
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