I_ServiceRisk
Basic view for service risk
I_ServiceRisk is a Basic CDS View that provides data about "Basic view for service risk" in SAP S/4HANA. It reads from 1 data source (crmc_srqm_risk) and exposes 2 fields with key field ServiceRisk. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| crmc_srqm_risk | crmc_srqm_risk | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ServiceRiskText | _Text | _Text.ServiceRisk = $projection.ServiceRisk |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISERVICERISK | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Basic view for service risk | view | |
| ObjectModel.representativeKey | ServiceRisk | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Search.searchable | true | view | |
| VDM.viewType | #BASIC | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceRisk | risk | ||
| _Text | _Text |
@AbapCatalog:
{
sqlViewName: 'ISERVICERISK',
preserveKey: true,
compiler.compareFilter: true,
buffering:
{
status: #ACTIVE,
type: #FULL
}
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataExtraction.enabled: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Basic view for service risk'
@ObjectModel:
{
representativeKey: 'ServiceRisk',
usageType:
{
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S
}
}
@Search.searchable: true
@VDM.viewType: #BASIC
define view I_ServiceRisk
as select from crmc_srqm_risk
association [0..*] to I_ServiceRiskText as _Text on _Text.ServiceRisk = $projection.ServiceRisk
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.7
@Search.ranking: #HIGH
@ObjectModel.text.association: '_Text'
key risk as ServiceRisk,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CRMC_SRQM_RISK"
],
"ASSOCIATED":
[
"I_SERVICERISKTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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