Search Results resolution_description
Overview
BIC_SERVICE_REQUEST_DETAIL_V is a reporting view historically catalogued under the BIC – Customer Intelligence product family, which is now marked obsolete in Oracle EBS. The view consolidates service request (incident) header data from Oracle Service with lookup-based decode information, presenting a flattened, read-only result set suitable for downstream reporting, extracts, and integration staging. The view surfaces the incident's problem code together with its translated meaning, and likewise exposes the resolution code and its meaning, so that report consumers do not need to join to lookup tables themselves. The view is defined with the WITH READ ONLY clause, which prevents DML against the view and enforces its role as a query-only presentation layer.
The ETRM metadata records the object as "Not implemented in this database," meaning that although the definition is documented, the database instance in question does not physically contain the view. Report design and integration mapping should therefore verify object existence before dependency is assumed.
Underlying Base Objects
The documented view text derives from three base objects:
- CS_INCIDENTS_ALL_B — the core Service (TeleService) incidents table, aliased
INA, supplying incident identity, customer, account, number, dates, and code columns. - CS_LOOKUPS (aliased
CLP) — resolved onPROBLEM_CODEto retrieve the lookup meaning that becomesPROBLEM_DESCRIPTION. - CS_LOOKUPS (aliased
CLR) — resolved onRESOLUTION_CODEto retrieve the lookup meaning that becomesRESOLUTION_DESCRIPTION.
Both lookup joins are outer joins (indicated by the (+) syntax), so incidents with null or unmapped problem and resolution codes are retained with null descriptions. The ETRM metadata documents "Referenced base objects: none documented," so the authoritative join relationships are best read directly from the view text reproduced above.
Key Columns
The view exposes twelve columns:
- INCIDENT_ID — primary identifier of the service request/incident.
- CUSTOMER_ID — customer identifier associated with the incident.
- CUST_ACCOUNT_ID (from
INA.ACCOUNT_ID) — the customer account identifier. - SR_NUMBER (from
INA.INCIDENT_NUMBER) — the user-facing service request number. - CREATION_DATE (from
INA.INCIDENT_DATE) — the date the incident was raised. - CLOSE_DATE and LAST_UPDATE_DATE — closure and audit timestamps.
- CURRENT_CONTACT_NAME — hard-coded as
NULL; a placeholder column carried for interface uniformity. - PROBLEM_CODE and PROBLEM_DESCRIPTION — the raw problem code and its lookup meaning (
CLP.MEANING); this is the pairing most relevant to a problem_description search. - RESOLUTION_CODE and RESOLUTION_DESCRIPTION — the resolution code and its lookup meaning (
CLR.MEANING).
Common Use Cases and Queries
Typical uses include service request aging reports, problem/resolution categorization extracts, and data feeds into customer intelligence or data warehouse layers. Because CURRENT_CONTACT_NAME is always null, consumers needing contact information must source it elsewhere.
To return problem descriptions for a set of service requests:
SELECT SR_NUMBER, PROBLEM_CODE, PROBLEM_DESCRIPTION FROM BIC_SERVICE_REQUEST_DETAIL_V WHERE PROBLEM_DESCRIPTION IS NOT NULL;SELECT SR_NUMBER, CREATION_DATE, PROBLEM_DESCRIPTION, RESOLUTION_DESCRIPTION FROM BIC_SERVICE_REQUEST_DETAIL_V WHERE CREATION_DATE BETWEEN :from_date AND :to_date ORDER BY CREATION_DATE;
Given the "not implemented" status and the obsolete BIC product classification, always confirm the view exists (for example, via ALL_VIEWS) or substitute equivalent queries against CS_INCIDENTS_ALL_B joined to CS_LOOKUPS directly.
-
View: BIC_SERVICE_REQUEST_DETAIL_V
12.2.2
product: BIC - Customer Intelligence(Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_SERVICE_REQUEST_DETAIL_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: XNS_SUPPORT_HISTORY_V
12.1.1
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: 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: EAM_FAILUREINFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_FAILUREINFO_V, object_name:EAM_FAILUREINFO_V, status:VALID, product: EAM - Enterprise Asset Management , description: This view gives details of Failures Information as reported against a Work Order. , implementation_dba_data: APPS.EAM_FAILUREINFO_V ,
-
View: CS_MFS_INTERFACE
12.1.1
product: CS - Service , implementation_dba_data: Not implemented in this database ,
-
View: CS_MFS_INTERFACE
12.2.2
product: CS - Service , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.EAM_FAILUREINFO_V
12.1.1
owner:APPS, object_type:VIEW, object_name:EAM_FAILUREINFO_V, status:VALID,
-
VIEW: APPS.EAM_FAILUREINFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_FAILUREINFO_V, object_name:EAM_FAILUREINFO_V, status:VALID,
-
VIEW: APPS.EAM_FAILUREINFO_V
12.1.1
-
VIEW: APPS.EAM_FAILUREINFO_V
12.2.2
-
VIEW: APPS.PA_CI_BASIC_CTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_BASIC_CTL_V, object_name:PA_CI_BASIC_CTL_V, status:VALID,
-
VIEW: APPS.PA_CI_LIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_LIST_V, object_name:PA_CI_LIST_V, status:VALID,
-
VIEW: APPS.PA_CI_BASIC_CTL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_BASIC_CTL_V, object_name:PA_CI_BASIC_CTL_V, status:VALID,
-
VIEW: CS.CS_INCIDENTS_ALL_B#
12.2.2
-
VIEW: APPS.PA_CI_CRPRJ_LIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_CRPRJ_LIST_V, object_name:PA_CI_CRPRJ_LIST_V, status:VALID,
-
VIEW: APPS.PA_CI_CRPRJ_LIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_CRPRJ_LIST_V, object_name:PA_CI_CRPRJ_LIST_V, status:VALID,
-
VIEW: APPS.PA_CI_LIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_LIST_V, object_name:PA_CI_LIST_V, status:VALID,
-
View: PA_CI_BASIC_CTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_BASIC_CTL_V, object_name:PA_CI_BASIC_CTL_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CI_BASIC_CTL_V ,
-
View: PA_CI_BASIC_CTL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_BASIC_CTL_V, object_name:PA_CI_BASIC_CTL_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CI_BASIC_CTL_V ,
-
View: PA_CI_CRPRJ_LIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_CRPRJ_LIST_V, object_name:PA_CI_CRPRJ_LIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CI_CRPRJ_LIST_V ,
-
View: PA_CI_CRPRJ_LIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_CRPRJ_LIST_V, object_name:PA_CI_CRPRJ_LIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CI_CRPRJ_LIST_V ,
-
APPS.CS_WF_ACTIVITIES_PKG SQL Statements
12.2.2
-
View: PA_CI_LIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_LIST_V, object_name:PA_CI_LIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CI_LIST_V ,
-
View: PA_CI_LIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_LIST_V, object_name:PA_CI_LIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CI_LIST_V ,
-
APPS.CS_WF_ACTIVITIES_PKG SQL Statements
12.1.1
-
PACKAGE: APPS.EAM_FAILURECODES_PUB
12.2.2
-
PACKAGE: APPS.EAM_FAILURECODES_PUB
12.1.1
-
PACKAGE: APPS.EAM_FAILURECODES_PVT
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,
-
PACKAGE: APPS.EAM_FAILURECODES_PVT
12.2.2
-
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,
-
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,
-
PACKAGE BODY: APPS.CS_WF_ACTIVITIES_PKG
12.2.2
-
PACKAGE BODY: APPS.CS_WF_ACTIVITIES_PKG
12.1.1
-
eTRM - EAM Tables and Views
12.2.2
description: Table for storing workflow item type and keys corresponding to a work order ,
-
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
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2