Search Results logged_by_name
Overview
CS_SR_REPORT_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, belonging to the Service (CS) product family. It is a denormalized, read-only projection over Service Request (incident) data, and its stated purpose is to feed the Service Request Summary and Detail reports. The view consolidates fields that would otherwise require many joins — incident header information, customer and party details, product context, and the code/meaning/description triplets for problem classification and resolution — into a single row per incident, keyed by INCIDENT_ID.
The view is documented in ETRM with status VALID for both 12.1.1 and 12.2.2. In 12.2.2 the metadata lists it as defined over a mixture of views, synonyms, and packages, reflecting the standard EBS layering in which APPS synonyms abstract the underlying _ALL base tables. The column PROBLEM_CODE that prompted this lookup is one of the classification attributes exposed directly by the view.
Underlying Base Objects
The documented base objects for CS_SR_REPORT_V are:
CS_INCIDENTS_ALL_VL(view) — the primary driver, supplying incident number, dates, type, severity, status, urgency, serial number, summary, close date, and the problem/resolution code columns.CS_LOOKUPS(view) — joined twice, aliasedSR_PROBandSR_RSLV, to translate lookup codes into meanings and descriptions.CS_CUSTOMER_PRODUCTS(view) — supplies the customer product reference number.MTL_SYSTEM_ITEMS_KFV(synonym) — provides concatenated product segments and product description.HZ_PARTIES(synonym) — supplies party number and party (company) name.CS_INCIDENT_TYPES_TL,CS_INCIDENT_SEVERITIES_TL,CS_INCIDENT_URGENCIES_TL(synonyms) andCS_INCIDENT_STATUSES_VL(view) — language-specific lookup translations for type, severity, urgency, and status.JTF_RS_RESOURCE_EXTNS_VL(view) — resolves the resource name of the service request owner.FND_USER(synonym) — resolves the user name of the person who logged the request.FND_GLOBALandCSICUMPI_PUB(packages) — supporting API/utility objects referenced in the definition, withUSERENV('LANG')used to filter the translated lookup columns.
Most joins to descriptive tables are outer joins ((+)), so incidents missing a product, customer product, party, problem code, or resolution code still return a row with nulls in the affected columns.
Key Columns
INCIDENT_ID,INCIDENT_NUMBER— surrogate and human-readable service request identifiers.PROBLEM_CODE— the lookup code fromCS_LOOKUPSwhereLOOKUP_TYPE = 'REQUEST_PROBLEM_CODE', joined fromCS_INCIDENTS_ALL_VL.PROBLEM_CODE.PROBLEM_CODE_MEANING,PROBLEM_CODE_DESCRIPTION— the translated meaning and description of the problem code.RESOLUTION_CODE,RESOLUTION_CODE_MEANING,RESOLUTION_CODE_DESCRIPTION— equivalent triple forLOOKUP_TYPE = 'REQUEST_RESOLUTION_CODE'.PRODUCT_NAME,PRODUCT_DESCRIPTION— from the concatenated item key flexfield.CUSTOMER_NUMBER,COMPANY_NAME,REFERENCE_NUMBER— party and customer product identifiers.INCIDENT_TYPE,SEVERITY,STATUS_CODE,URGENCY,OWNER,LOGGED_BY_NAME— the classification and ownership attributes used to slice the report.DATE_CLOSED,CLOSED_FLAG— close date and a derivedY/Nindicator based on the status close flag.
Common Use Cases and Queries
The view is typically consumed by the seeded Service Request Summary/Detail reports and by custom extracts that need a flattened service request picture. Querying by problem code is a common analyst task:
SELECT incident_number, problem_code, problem_code_meaning, company_name, status_code FROM cs_sr_report_v WHERE problem_code = 'HARDWARE_FAILURE';- Counts by problem classification:
SELECT problem_code, problem_code_meaning, COUNT(*) FROM cs_sr_report_v GROUP BY problem_code, problem_code_meaning ORDER BY 3 DESC; - Resolution trending:
SELECT resolution_code, resolution_code_meaning, COUNT(*) FROM cs_sr_report_v WHERE closed_flag = 'Y' GROUP BY resolution_code, resolution_code_meaning; - Customer-facing detail:
SELECT incident_number, summary, product_name, owner, date_closed FROM cs_sr_report_v WHERE customer_number = :party_number;
Because the view joins only outer-joined descriptive tables and language-filtered lookups, users should be aware that rows may contain nulls for product, customer, or code attributes, and that meanings depend on the session language. It is a reporting construct only and should not be used for DML.
-
View: CS_SR_REPORT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_REPORT_V, object_name:CS_SR_REPORT_V, status:VALID, product: CS - Service , description: This view is used in Service Request Summary/Detail report. , implementation_dba_data: APPS.CS_SR_REPORT_V ,
-
View: XNS_INCIDENTS_WORKFLOW_V
12.2.2
product: XNS - Service for Communications (Obsolete) , description: Service requests and their attributes used by Comms workflow , implementation_dba_data: Not implemented in this database ,
-
View: CS_SR_REPORT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_REPORT_V, object_name:CS_SR_REPORT_V, status:VALID, product: CS - Service , description: This view is used in Service Request Summary/Detail report. , implementation_dba_data: APPS.CS_SR_REPORT_V ,
-
View: XNS_INCIDENTS_WORKFLOW_V
12.1.1
product: XNS - Service for Communications (obsolete) , description: Service requests and their attributes used by Comms workflow , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.CS_SR_REPORT_V
12.1.1
-
VIEW: APPS.CS_SR_REPORT_V
12.2.2
-
VIEW: APPS.CS_SR_REPORT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_REPORT_V, object_name:CS_SR_REPORT_V, status:VALID,
-
VIEW: APPS.CS_SR_REPORT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_REPORT_V, object_name:CS_SR_REPORT_V, status:VALID,
-
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_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: XNS_INCIDENTS_V
12.1.1
product: XNS - Service for Communications (obsolete) , description: Service requests and their attributes , implementation_dba_data: Not implemented in this database ,
-
View: XNS_INCIDENTS_V
12.2.2
product: XNS - Service for Communications (Obsolete) , description: Service requests and their attributes , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.CS_INCIDENTS_V
12.1.1
-
VIEW: APPS.CS_INCIDENTS_V
12.2.2
-
View: CSD_INCIDENTS_NON_SEC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_INCIDENTS_NON_SEC_V, object_name:CSD_INCIDENTS_NON_SEC_V, status:VALID, product: CSD - Depot Repair , description: The view for getting service request information. , implementation_dba_data: APPS.CSD_INCIDENTS_NON_SEC_V ,
-
View: CSD_INCIDENTS_NON_SEC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_INCIDENTS_NON_SEC_V, object_name:CSD_INCIDENTS_NON_SEC_V, status:VALID, product: CSD - Depot Repair , description: The view for getting service request information. , implementation_dba_data: APPS.CSD_INCIDENTS_NON_SEC_V ,
-
VIEW: APPS.CSD_INCIDENTS_NON_SEC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_INCIDENTS_NON_SEC_V, object_name:CSD_INCIDENTS_NON_SEC_V, status:VALID,
-
View: CSD_INCIDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_INCIDENTS_V, object_name:CSD_INCIDENTS_V, status:VALID, product: CSD - Depot Repair , description: The view for getting service request information. , implementation_dba_data: APPS.CSD_INCIDENTS_V ,
-
View: CSD_INCIDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_INCIDENTS_V, object_name:CSD_INCIDENTS_V, status:VALID, product: CSD - Depot Repair , description: The view for getting service request information. , implementation_dba_data: APPS.CSD_INCIDENTS_V ,
-
VIEW: APPS.CSD_INCIDENTS_NON_SEC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_INCIDENTS_NON_SEC_V, object_name:CSD_INCIDENTS_NON_SEC_V, status:VALID,
-
VIEW: APPS.CSD_INCIDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_INCIDENTS_V, object_name:CSD_INCIDENTS_V, status:VALID,
-
VIEW: APPS.CSD_INCIDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_INCIDENTS_V, object_name:CSD_INCIDENTS_V, status:VALID,
-
VIEW: APPS.CSD_INCIDENTS_NON_SEC_V
12.2.2
-
VIEW: APPS.CSD_INCIDENTS_V
12.2.2
-
VIEW: APPS.CSD_INCIDENTS_V
12.1.1
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.CSD_INCIDENTS_NON_SEC_V
12.1.1
-
eTRM - CSD Tables and Views
12.1.1
description: Transaction table for the High Volume Repair module. ,
-
eTRM - CSD Tables and Views
12.2.2
description: Transaction table for the High Volume Repair module. ,
-
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