I_PPM_SeverityText
Severity Text
I_PPM_SeverityText is a Basic CDS View that provides data about "Severity Text" in SAP S/4HANA. It reads from 1 data source (eve_threshold_st) and exposes 6 fields with key fields Severity, LanguageCode, EvaluationEngineApplication. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| eve_threshold_st | threshold | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_PPM_Severity | _Severity | $projection.Severity = _Severity.Severity and $projection.EvaluationEngineApplication = _Severity.EvaluationEngineApplication |
| [1..1] | I_PPM_Application | _Application | $projection.EvaluationEngineApplication = _Application.EvaluationEngineApplication |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPPMSEVERITYTEXT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| EndUserText.label | Severity Text | view | |
| ObjectModel.representativeKey | Severity | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Severity | eve_threshold_st | severity | |
| KEY | LanguageCode | eve_threshold_st | langu | |
| KEY | EvaluationEngineApplication | eve_threshold_st | application | |
| SeverityText | eve_threshold_st | description | ||
| _Application | _Application | |||
| _Severity | _Severity |
@AbapCatalog.sqlViewName: 'IPPMSEVERITYTEXT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
//@Search.searchable: true
@VDM.viewType: #BASIC
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@ObjectModel.dataCategory: #TEXT
@EndUserText.label: 'Severity Text'
@ObjectModel.representativeKey: 'Severity'
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
define view I_PPM_SeverityText
as select from eve_threshold_st as threshold
association [1..1] to I_PPM_Severity as _Severity on $projection.Severity = _Severity.Severity
and $projection.EvaluationEngineApplication = _Severity.EvaluationEngineApplication
association [1..1] to I_PPM_Application as _Application on $projection.EvaluationEngineApplication = _Application.EvaluationEngineApplication
{
@ObjectModel.foreignKey.association: '_Severity'
//@ObjectModel.text.element: 'SeverityText'
key threshold.severity as Severity,
@Semantics.language: true
key threshold.langu as LanguageCode,
@ObjectModel.foreignKey.association: '_Application'
key threshold.application as EvaluationEngineApplication,
@Semantics.text: true
//@Search.defaultSearchElement: true
threshold.description as SeverityText,
_Application,
_Severity
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"EVE_THRESHOLD_ST"
],
"ASSOCIATED":
[
"I_PPM_APPLICATION",
"I_PPM_SEVERITY"
],
"BASE":
[],
"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