Search Results customer_phone_id
Overview
CS_INCIDENTS_ALL_B is the base (non-translated) table in the Oracle E-Business Suite Service (CS) module that stores service requests — historically and still internally referred to as "incidents." In EBS 12.1.1 and 12.2.2 this table is owned by the CS schema and serves as the central repository for the descriptive, lifecycle, and relationship data of every service request created or imported into the system. Because all language-independent attributes are held here, translatable descriptive text is split off into a companion _TL table, while this _B suffix table remains the authoritative record of each incident.
From a dimensional-modeling perspective, the metadata’s heuristic Data Vault classification places CS_INCIDENTS_ALL_B as a hub. This is a modeling suggestion only: the table carries a clean surrogate primary key (INCIDENT_ID) with multiple business-key candidates and is referenced as the target of an extensive set of foreign keys from other tables. The documented physical schema contains 293 columns, reflecting the maturity of the Service module and the many optional service-request attributes it supports.
Key Information Stored
The table is anchored by the surrogate primary key INCIDENT_ID (constraint CS_INCIDENTS_B_PK) and two additional unique indexes that represent natural business keys: INCIDENT_NUMBER (CS_INCIDENTS_U2) and RMA_HEADER_ID (CS_INCIDENTS_U3).
The most operationally significant columns include:
- INCIDENT_NUMBER / INCIDENT_DATE — the user-visible service request identifier and creation date.
- INCIDENT_STATUS_ID, INCIDENT_TYPE_ID, INCIDENT_URGENCY_ID, INCIDENT_SEVERITY_ID — foreign keys that classify the request’s state and priority for escalation and SLA processing.
- SUMMARY, PROBLEM_DESCRIPTION, RESOLUTION_DESCRIPTION — core textual content describing the issue and its resolution.
- CUSTOMER_ID, ACCOUNT_ID, CUSTOMER_NUMBER, CUSTOMER_NAME — the requesting customer or party.
- INCIDENT_OWNER_ID, OWNER_GROUP_ID, RESPONSIBLE_GROUP_ID — assignment and ownership of the request.
- CUSTOMER_PRODUCT_ID, CURRENT_SERIAL_NUMBER, SYSTEM_ID — the installed base item or system to which the incident pertains.
- OPEN_FLAG, RECORD_IS_VALID_FLAG, CLOSE_DATE, ACTUAL_RESOLUTION_DATE — lifecycle state and closure tracking.
- ORG_ID — the multi-org operating unit context, essential for R12 data security.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY — standard EBS audit columns.
Common Use Cases and Queries
The most frequent reporting pattern joins CS_INCIDENTS_ALL_B to its status and type lookup tables to produce open-incident dashboards. A typical query aggregates open requests by status:
- SELECT i.incident_number, i.summary, s.name status, i.incident_date FROM cs_incidents_all_b i, cs_incident_statuses_b s WHERE i.incident_status_id = s.incident_status_id AND i.open_flag = 'Y' AND i.org_id = :org_id;
- Aging and SLA analysis uses OBLIGATION_DATE, EXPECTED_RESOLUTION_DATE, and CLOSE_DATE against the SLA_DATE_n and SLA_DURATION_n columns.
- Customer-facing extracts join to HZ_PARTIES and HZ_CUST_ACCOUNTS via CUSTOMER_ID and ACCOUNT_ID.
- Installed-base analysis joins to CSI_ITEM_INSTANCES through CUSTOMER_PRODUCT_ID to correlate incidents with specific serialized assets.
- Assignment/queue reporting joins to JTF_RS_RESOURCE_EXTNS, JTF_RS_GROUPS_B, and JTF_RS_TEAMS_B through INCIDENT_OWNER_ID.
Related Objects
The referential network is extensive. The most significant dependents and parents include:
- CS_INCIDENTS_EXT_B and CS_INCIDENTS_EXT — extended attribute storage keyed by INCIDENT_ID.
- CS_HZ_SR_CONTACT_POINTS — service request contacts (PRIMARY_CONTACT_ID, and referencing INCIDENT_ID back to this table).
- CS_SR_CONTACTS_EXT_B — additional contact details.
- CSD_REPAIRS, CSD_REPAIR_ORDER_GROUPS, and CS_ESTIMATE_DETAILS — depot repair and estimate lines associated with the incident.
- JTF_TASKS_B, JTF_NOTES_B, JTF_TASK_REFERENCES_B — CRM tasks, notes, and references pointing at the incident.
- CS_INCIDENT_LINKS — self-referencing links between incidents (FROM_INCIDENT_ID, OBJECT_ID, SUBJECT_ID).
- AHL_VISITS_B and AHL_UNIT_EFFECTIVITIES_B — field service visits and unit effectivity.
- CS_INCIDENT_STATUSES_B, CS_INCIDENT_TYPES_B, CS_INCIDENT_URGENCIES_B, CS_INCIDENT_SEVERITIES_B — the classification lookup tables referenced by the incident’s status and priority columns.
These dependencies confirm CS_INCIDENTS_ALL_B as the hub of the Service module’s transactional data model, with downstream repair, task, contact, and field-service tables all resolving back to a single INCIDENT_ID.
-
Table: CS_INCIDENTS_ALL_B
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_INCIDENTS_ALL_B, object_name:CS_INCIDENTS_ALL_B, status:VALID, product: CS - Service , description: This table stores non-translated information about service requests. , implementation_dba_data: CS.CS_INCIDENTS_ALL_B ,
-
Table: CS_INCIDENTS_ALL_B
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_INCIDENTS_ALL_B, object_name:CS_INCIDENTS_ALL_B, status:VALID, product: CS - Service , description: This table stores non-translated information about service requests. , implementation_dba_data: CS.CS_INCIDENTS_ALL_B ,
-
Table: CS_INCIDENTS_AUDIT_B
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_INCIDENTS_AUDIT_B, object_name:CS_INCIDENTS_AUDIT_B, status:VALID, product: CS - Service , description: This table stores non-translated audit information for service requests. , implementation_dba_data: CS.CS_INCIDENTS_AUDIT_B ,
-
Table: CS_INCIDENTS_AUDIT_B
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_INCIDENTS_AUDIT_B, object_name:CS_INCIDENTS_AUDIT_B, status:VALID, product: CS - Service , description: This table stores non-translated audit information for service requests. , implementation_dba_data: CS.CS_INCIDENTS_AUDIT_B ,
-
APPS.CS_SR_PARTY_MERGE_PKG SQL Statements
12.1.1
-
VIEW: CS.CS_INCIDENTS_ALL_B#
12.2.2
-
APPS.CS_SR_PARTY_MERGE_PKG SQL Statements
12.2.2
-
VIEW: CS.CS_INCIDENTS_AUDIT_B#
12.2.2
-
APPS.CSC_SERVICE_KEY_PVT SQL Statements
12.2.2
-
APPS.CSC_SERVICE_KEY_PVT SQL Statements
12.1.1
-
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_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_SR_ACCESS_RESP_SEC
12.2.2
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_B_SEC
12.1.1
product: CS - Service , implementation_dba_data: Not implemented in this database ,
-
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_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_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_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_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.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: XNS_SR_INCIDENTS_V
12.2.2
product: XNS - Service for Communications (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: XNS_SR_INCIDENTS_V
12.1.1
product: XNS - Service for Communications (obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: CS.CS_INCIDENTS_AUDIT_B#
12.2.2
owner:CS, object_type:VIEW, object_name:CS_INCIDENTS_AUDIT_B#, status:VALID,
-
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 ,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
APPS.CSFW_TASKS_PUB SQL Statements
12.2.2
-
APPS.CSFW_TASKS_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CS_SR_PARTY_MERGE_PKG
12.2.2
-
PACKAGE BODY: APPS.CS_SR_PARTY_MERGE_PKG
12.1.1
-
VIEW: CS.CS_INCIDENTS_ALL_B#
12.2.2
owner:CS, object_type:VIEW, object_name:CS_INCIDENTS_ALL_B#, status:VALID,
-
VIEW: APPS.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,
-
TABLE: CS.CS_INCIDENTS_ALL_B
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_INCIDENTS_ALL_B, object_name:CS_INCIDENTS_ALL_B, status:VALID,
-
TABLE: CS.CS_INCIDENTS_ALL_B
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_INCIDENTS_ALL_B, object_name:CS_INCIDENTS_ALL_B, status:VALID,
-
PACKAGE: APPS.CS_SERVICEREQUEST_PVT
12.2.2
-
PACKAGE: APPS.CS_SERVICEREQUEST_PVT
12.1.1
-
APPS.CS_SERVICEREQUEST_UTIL SQL Statements
12.1.1
-
APPS.CS_SERVICEREQUEST_UTIL SQL Statements
12.2.2
-
VIEW: APPS.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,
-
TABLE: CS.CS_INCIDENTS_AUDIT_B
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_INCIDENTS_AUDIT_B, object_name:CS_INCIDENTS_AUDIT_B, status:VALID,
-
PACKAGE BODY: APPS.CSC_SERVICE_KEY_PVT
12.1.1