Search Results cs_incident_statuses_vl
Overview
CS_INCIDENT_STATUSES_VL is a multi-lingual (ML) view owned by the APPS schema in Oracle E-Business Suite, belonging to the Service (CS) product family. It presents the translatable and non-translatable attributes of service request incident statuses in a single, language-resolved record set. The view is the standard query interface for incident status setup data, exposing status codes, display colors, active date ranges, seeded flags, and a comprehensive set of behavioral control flags that govern interaction rules on service requests. Because it resolves the user's session language automatically, it is the appropriate object for forms, concurrent programs, OAF pages, and custom reporting or integration logic that must display status names and descriptions in the runtime language of the user. The underlying base objects are registered as the internal tables CS_INCIDENT_STATUSES_B and CS_INCIDENT_STATUSES_TL, and the object holds a VALID status in the EBS data dictionary for both 12.1.1 and 12.2.2.
Underlying Base Objects
The view is defined over two documented base objects, referenced through synonyms: CS_INCIDENT_STATUSES_B, which stores the language-independent (base) attributes of each incident status, and CS_INCIDENT_STATUSES_TL, which stores the translated NAME and DESCRIPTION values keyed by language. The join is performed on INCIDENT_STATUS_ID, and the translation row is filtered by the condition T.LANGUAGE = USERENV('LANG'), so each query returns exactly one translation row per status, matching the session language. The B table contributes identity, audit, and configuration columns such as CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, and LAST_UPDATE_LOGIN. The TL table contributes LANGUAGE, SOURCE_LANG, NAME, and DESCRIPTION. Because this is a view and not a table, DML against it is routed through the underlying tables and is normally performed by the application's own forms or APIs rather than by direct SQL.
Key Columns
- INCIDENT_STATUS_ID — Primary identifier of the incident status; the join key between the base and translation tables.
- NAME and DESCRIPTION — Language-resolved display text from CS_INCIDENT_STATUSES_TL.
- STATUS_CODE — The internal code used to identify the status in application logic.
- CLOSE_FLAG — Indicates whether the status represents a closed incident.
- VALID_IN_CREATE_FLAG — Indicates whether the status may be selected when an incident is created.
- START_DATE_ACTIVE / END_DATE_ACTIVE — Effective date range for the status.
- SEEDED_FLAG — Distinguishes Oracle-seeded statuses from user-defined statuses.
- DISPLAY_COLOR and RGB_COLOR — Color configuration used by the UI to render the status.
- DISALLOW_* flags — A set of control columns (DISALLOW_REQUEST_UPDATE, DISALLOW_NEW_ACTION, DISALLOW_ACTION_UPDATE, DISALLOW_NEW_CHARGE, DISALLOW_AGENT_DISPATCH, DISALLOW_RMA, DISALLOW_CHARGE_UPDATE, DISALLOW_PRODUCT_UPDATE) that suppress specific operations while an incident is in that status.
- RESPONDED_FLAG, RESOLVED_FLAG, ON_HOLD_FLAG, PENDING_APPROVAL_FLAG, STATUS_CLASS_CODE — State-classification attributes used in workflow and reporting logic.
- ATTRIBUTE1–ATTRIBUTE15 and CONTEXT — Descriptive flexfield columns for customer-defined extensions.
- ROW_ID, OBJECT_VERSION_NUMBER, SORT_ORDER — Row identity, optimistic locking, and display ordering support.
Common Use Cases and Queries
Typical uses include validating whether a status permits creation, listing active statuses for a picklist, joining status names onto incident reporting queries, and auditing the seeded versus custom status configuration. All queries should filter on the active date range and, where relevant, on the seeded or class-code flags.
- List all active statuses in the user's language:
SELECT incident_status_id, status_code, name, display_color
FROM cs_incident_statuses_vl
WHERE TRUNC(SYSDATE) BETWEEN NVL(start_date_active, SYSDATE)
AND NVL(end_date_active, SYSDATE)
ORDER BY sort_order;
- Identify statuses valid at creation time:
SELECT incident_status_id, status_code, name FROM cs_incident_statuses_vl WHERE valid_in_create_flag = 'Y' AND NVL(close_flag, 'N') = 'N' ORDER BY sort_order;
- Report on operational restrictions imposed by each status:
SELECT status_code, name, disallow_new_action,
disallow_agent_dispatch, disallow_rma
FROM cs_incident_statuses_vl
WHERE seeded_flag = 'N';
Because the view resolves language through USERENV('LANG'), the same SQL executed in a different session language returns the corresponding translated NAME and DESCRIPTION, making it well suited to multi-lingual reporting and integration interfaces.
-
View: CS_INCIDENT_STATUSES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENT_STATUSES_VL, object_name:CS_INCIDENT_STATUSES_VL, status:VALID, product: CS - Service , description: Multi-lingual view for CS_INCIDENT_STATUSES_B and CS_INCIDENT_STATUSES_TL tables. , implementation_dba_data: APPS.CS_INCIDENT_STATUSES_VL ,
-
View: CS_INCIDENT_STATUSES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENT_STATUSES_VL, object_name:CS_INCIDENT_STATUSES_VL, status:VALID, product: CS - Service , description: Multi-lingual view for CS_INCIDENT_STATUSES_B and CS_INCIDENT_STATUSES_TL tables. , implementation_dba_data: APPS.CS_INCIDENT_STATUSES_VL ,
-
APPS.CS_SR_DUP_CHK_PVT SQL Statements
12.2.2
-
VIEW: APPS.CS_SR_DUPLICATE_CHECK_V
12.1.1
-
VIEW: APPS.CS_INC_RELATED_STATUSES_V
12.2.2
-
VIEW: APPS.CS_SR_DUPLICATE_CHECK_V
12.2.2
-
VIEW: APPS.CS_INC_RELATED_STATUSES_V
12.1.1
-
View: XNS_INCIDENT_LINKS_V
12.1.1
product: XNS - Service for Communications (obsolete) , description: Related service requests information , implementation_dba_data: Not implemented in this database ,
-
View: XNS_INCIDENT_LINKS_V
12.2.2
product: XNS - Service for Communications (Obsolete) , description: Related service requests information , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.CS_INCIDENTS_WORKFLOW_V
12.2.2
-
VIEW: APPS.CS_NEW_INCIDENTS_V_SEC
12.2.2
-
VIEW: APPS.CS_INCIDENTS_WORKFLOW_V
12.1.1
-
VIEW: APPS.CS_SR_REPORT_V
12.1.1
-
VIEW: APPS.CS_NEW_INCIDENTS_V_SEC
12.1.1
-
VIEW: APPS.CS_NEW_INCIDENTS_V
12.1.1
-
VIEW: APPS.CS_NEW_INCIDENTS_V
12.2.2
-
PACKAGE BODY: APPS.ASP_SERVICE_CONTENT_PROVIDER
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ASP_SERVICE_CONTENT_PROVIDER, status:VALID,
-
SYNONYM: APPS.CS_INCIDENT_STATUSES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENT_STATUSES_TL, status:VALID,
-
VIEW: APPS.CS_SR_REPORT_V
12.2.2
-
APPS.ASP_SERVICE_CONTENT_PROVIDER SQL Statements
12.2.2
-
SYNONYM: APPS.CS_INCIDENT_STATUSES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENT_STATUSES_TL, status:VALID,
-
PACKAGE BODY: APPS.BIV_DASH_BIN_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIV_DASH_BIN_PKG, status:VALID,
-
View: CS_SR_DUPLICATE_CHECK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_DUPLICATE_CHECK_V, object_name:CS_SR_DUPLICATE_CHECK_V, status:VALID, product: CS - Service , description: This view will be used as the base view for the duplicate check window in SR and SR tab , implementation_dba_data: APPS.CS_SR_DUPLICATE_CHECK_V ,
-
PACKAGE BODY: APPS.CS_SR_DUP_CHK_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_SR_DUP_CHK_PVT, status:VALID,
-
PACKAGE BODY: APPS.ASP_SERVICE_CONTENT_PROVIDER
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ASP_SERVICE_CONTENT_PROVIDER, status:VALID,
-
SYNONYM: APPS.CS_INCIDENT_STATUSES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENT_STATUSES, status:VALID,
-
APPS.CS_ASSIGN_RESOURCE_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.BIV_RT_TASK_BLOG_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIV_RT_TASK_BLOG_PKG, status:VALID,
-
APPS.ASP_SERVICE_CONTENT_PROVIDER SQL Statements
12.1.1
-
View: CS_SR_DUPLICATE_CHECK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_DUPLICATE_CHECK_V, object_name:CS_SR_DUPLICATE_CHECK_V, status:VALID, product: CS - Service , description: This view will be used as the base view for the duplicate check window in SR and SR tab , implementation_dba_data: APPS.CS_SR_DUPLICATE_CHECK_V ,
-
PACKAGE BODY: APPS.CS_ASSIGN_RESOURCE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_ASSIGN_RESOURCE_PKG, status:VALID,
-
SYNONYM: APPS.CS_INCIDENT_STATUSES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENT_STATUSES, status:VALID,
-
PACKAGE BODY: APPS.CS_ASSIGN_RESOURCE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_ASSIGN_RESOURCE_PKG, status:VALID,
-
PACKAGE BODY: APPS.CSD_REFURBISH_IRO_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSD_REFURBISH_IRO_GRP, status:VALID,
-
APPS.CS_ASSIGN_RESOURCE_PKG SQL Statements
12.2.2
-
View: CS_INC_RELATED_STATUSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INC_RELATED_STATUSES_V, object_name:CS_INC_RELATED_STATUSES_V, status:VALID, product: CS - Service , description: Related statuses for a service request type , implementation_dba_data: APPS.CS_INC_RELATED_STATUSES_V ,
-
View: CS_INC_RELATED_STATUSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INC_RELATED_STATUSES_V, object_name:CS_INC_RELATED_STATUSES_V, status:VALID, product: CS - Service , description: Related statuses for a service request type , implementation_dba_data: APPS.CS_INC_RELATED_STATUSES_V ,
-
VIEW: APPS.CSD_IR_REPAIR_JOBS_V
12.2.2
-
PACKAGE BODY: APPS.CS_ASSIGN_RESOURCE_CON_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_ASSIGN_RESOURCE_CON_PKG, status:VALID,
-
PACKAGE BODY: APPS.CS_ASSIGN_RESOURCE_CON_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_ASSIGN_RESOURCE_CON_PKG, status:VALID,
-
View: XNS_SUPPORT_HISTORY_V
12.2.2
product: XNS - Service for Communications (Obsolete) , description: Service request history for customer products in the installed base , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.CSD_IR_REPAIR_JOBS_V
12.1.1
-
SYNONYM: APPS.CS_INCIDENT_STATUSES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENT_STATUSES_B, status:VALID,
-
PACKAGE BODY: APPS.EAM_COMMON_UTILITIES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EAM_COMMON_UTILITIES_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSD_REFURBISH_IRO_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSD_REFURBISH_IRO_GRP, status:VALID,
-
APPS.CS_ASSIGN_RESOURCE_CON_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CS_WF_ACTIVITIES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_WF_ACTIVITIES_PKG, 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.AHL_PRD_NONROUTINE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_PRD_NONROUTINE_PVT, status:VALID,
-
PACKAGE BODY: APPS.CS_WF_EVENT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_WF_EVENT_PKG, status:VALID,