I_UtilitiesServiceReason
IS U BR Avg Serv Time Service Reason
I_UtilitiesServiceReason is a Basic CDS View that provides data about "IS U BR Avg Serv Time Service Reason" in SAP S/4HANA. It reads from 2 data sources (crmc_qpcd, crmc_qpct) and exposes 5 fields with key fields ServiceDefectCodeCatalog, ServiceDefectCodeGroup, ServiceDefectCode.
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| EndUserText.label | IS U BR Avg Serv Time Service Reason | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceDefectCodeCatalog | crmc_qpcd | katalogart | Catalog |
| KEY | ServiceDefectCodeGroup | crmc_qpcd | codegruppe | Catalog |
| KEY | ServiceDefectCode | crmc_qpcd | code | Defect Code |
| DefectClass | crmc_qpcd | defectclass | Defect Class | |
| DefectCodeText | crmc_qpct | kurztext | Code Description |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@VDM.lifecycle.contract.type:#SAP_INTERNAL_API
@EndUserText.label: 'IS U BR Avg Serv Time Service Reason'
define view entity I_UtilitiesServiceReason
as select from crmc_qpcd
inner join crmc_qpct on crmc_qpct.katalogart = crmc_qpcd.katalogart
and crmc_qpct.codegruppe = crmc_qpcd.codegruppe
and crmc_qpct.code = crmc_qpcd.code
and crmc_qpct.sprache = $session.system_language
{
@EndUserText.label: 'Catalog'
key crmc_qpcd.katalogart as ServiceDefectCodeCatalog,
@EndUserText.label: 'Catalog'
key crmc_qpcd.codegruppe as ServiceDefectCodeGroup,
@ObjectModel.text.element: ['DefectCodeText']
@EndUserText.label: 'Defect Code'
key crmc_qpcd.code as ServiceDefectCode,
@EndUserText.label: 'Defect Class'
crmc_qpcd.defectclass as DefectClass,
@EndUserText.label: 'Code Description'
crmc_qpct.kurztext as DefectCodeText
}
where
crmc_qpcd.inaktiv = ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CRMC_QPCD",
"CRMC_QPCT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA