I_PPM_SEVERITYTEXT
Severity Text
I_PPM_SEVERITYTEXT is a CDS View in S/4HANA. Severity Text. It contains 2 fields. 3 CDS views read from this table.
CDS Views using this table (3)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| C_PPM_SeverityTextValueHelp | view | from | CONSUMPTION | Value help for severity values |
| I_PPM_ChecklistItemSeverity | view | left_outer | BASIC | Checklist Item Severity |
| I_PPM_ObjectSeverity | view | left_outer | COMPOSITE | Aggregated severity from Objects like Projects or Tasks |
Fields (2)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | Severity | Severity | 1 |
| SeverityText | SeverityText | 3 |
@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
}
}*/