APL_V_LOG_SEVERITY_TXT
Severity
APL_V_LOG_SEVERITY_TXT is a CDS View that provides data about "Severity" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key field Severity.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | APL_V_LSEV_TXT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | Severity | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| EndUserText.label | Severity | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Severity | |||
| Language | ddlanguage | |||
| SeverityText | ddtext | |||
| _DD07L | _DD07L | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'APL_V_LSEV_TXT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'Severity'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'Severity'
@AccessControl.authorizationCheck:#NOT_REQUIRED
define view APL_V_LOG_SEVERITY_TXT as select from dd07t
association[0..1] to APL_V_LOG_SEVERITY_VH as _DD07L on $projection.Severity = _DD07L.Severity
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_DD07L'
key substring(domvalue_l,1,3) as Severity,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
ddlanguage as Language,
@Semantics.text: true
ddtext as SeverityText,
//Associations
_DD07L,
_Language
}
where dd07t.domname = 'APL_D_LOG_SEVERITY' and dd07t.as4local = 'A' and dd07t.ddlanguage = $session.system_language;
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"APL_V_LOG_SEVERITY_VH",
"I_LANGUAGE"
],
"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