Search Results product_revision
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.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 ,
-
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_B_SEC
12.1.1
product: CS - Service , implementation_dba_data: Not implemented in this database ,
-
View: CS_SR_ACCESS_RESP_SEC
12.1.1
product: CS - Service , implementation_dba_data: Not implemented in this database ,
-
View: CS_INCIDENTS_VL_SEC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_VL_SEC FND.CS_INCIDENTS_VL_SEC, object_name:CS_INCIDENTS_VL_SEC, status:VALID, product: CS - Service , description: Multi-lingual Secured view based on CS_INCIDENTS_ALL_B_SEC_V view and CS_INCIDENTS_ALL_TL table. , implementation_dba_data: APPS.CS_INCIDENTS_VL_SEC ,
-
View: CS_INCIDENTS_B_SEC
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_B_SEC, object_name:CS_INCIDENTS_B_SEC, status:VALID, product: CS - Service , implementation_dba_data: APPS.CS_INCIDENTS_B_SEC ,
-
View: CS_SR_INCIDENTS_V_SEC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_INCIDENTS_V_SEC, object_name:CS_SR_INCIDENTS_V_SEC, status:VALID, product: CS - Service , description: Base view for SR main form. , implementation_dba_data: APPS.CS_SR_INCIDENTS_V_SEC ,
-
View: CS_SR_ACCESS_RESP_SEC
12.2.2
product: CS - Service , implementation_dba_data: Not implemented in this database ,
-
View: CS_INCIDENTS_ALL_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_ALL_VL, object_name:CS_INCIDENTS_ALL_VL, status:VALID, product: CS - Service , description: Multi-lingual view for CS_INCIDENTS_ALL_B and CS_INCIDENTS_ALL_TL tables. , implementation_dba_data: APPS.CS_INCIDENTS_ALL_VL ,
-
View: CS_SR_INCIDENTS_V_SEC
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_INCIDENTS_V_SEC, object_name:CS_SR_INCIDENTS_V_SEC, status:VALID, product: CS - Service , description: Base view for SR main form. , implementation_dba_data: APPS.CS_SR_INCIDENTS_V_SEC ,
-
View: CS_SR_INCIDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_INCIDENTS_V, object_name:CS_SR_INCIDENTS_V, status:VALID, product: CS - Service , description: Base view for SR main form. , implementation_dba_data: APPS.CS_SR_INCIDENTS_V ,
-
View: CS_SR_INCIDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_INCIDENTS_V, object_name:CS_SR_INCIDENTS_V, status:VALID, product: CS - Service , description: Base view for SR main form. , implementation_dba_data: APPS.CS_SR_INCIDENTS_V ,
-
View: CS_INCIDENTS_VL_SEC
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_VL_SEC FND.CS_INCIDENTS_VL_SEC, object_name:CS_INCIDENTS_VL_SEC, status:VALID, product: CS - Service , implementation_dba_data: APPS.CS_INCIDENTS_VL_SEC ,
-
View: CS_INCIDENTS_ALL_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_ALL_VL, object_name:CS_INCIDENTS_ALL_VL, status:VALID, product: CS - Service , description: Multi-lingual view for CS_INCIDENTS_ALL_B and CS_INCIDENTS_ALL_TL tables. , implementation_dba_data: APPS.CS_INCIDENTS_ALL_VL ,
-
View: CS_INCIDENTS_AUDIT_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_AUDIT_VL, object_name:CS_INCIDENTS_AUDIT_VL, status:VALID, product: CS - Service , description: Multi-lingual view for CS_INCIDENTS_AUDIT_B and CS_INCIDENTS_AUDIT_TL tables. , implementation_dba_data: APPS.CS_INCIDENTS_AUDIT_VL ,
-
View: CS_INCIDENTS_AUDIT_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_AUDIT_VL, object_name:CS_INCIDENTS_AUDIT_VL, status:VALID, product: CS - Service , description: Multi-lingual view for CS_INCIDENTS_AUDIT_B and CS_INCIDENTS_AUDIT_TL tables. , implementation_dba_data: APPS.CS_INCIDENTS_AUDIT_VL ,