I_JITApplicationLogSeverityTxt
JIT Application Log Severity Text
I_JITApplicationLogSeverityTxt is a Basic CDS View that provides data about "JIT Application Log Severity Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key field Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [0..1] | I_JITApplicationLogSeverity | _JITApplicationLogSeverity | $projection.JITApplicationLogSeverity = _JITApplicationLogSeverity.JITApplicationLogSeverity |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | JIT Application Log Severity Text | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Search.searchable | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | ddlanguage | ||
| JITApplicationLogSeverityTxt | ddtext | |||
| _Language | _Language | |||
| _JITApplicationLogSeverity | _JITApplicationLogSeverity |
@AccessControl: {
authorizationCheck : #NOT_REQUIRED
}
@EndUserText.label: 'JIT Application Log Severity Text'
@VDM.viewType : #BASIC
@ObjectModel: {
usageType: {
dataClass : #MASTER,
serviceQuality : #A,
sizeCategory : #S
},
dataCategory : #TEXT
}
@Search.searchable: true
define view entity I_JITApplicationLogSeverityTxt
as select from dd07t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [0..1] to I_JITApplicationLogSeverity as _JITApplicationLogSeverity on $projection.JITApplicationLogSeverity = _JITApplicationLogSeverity.JITApplicationLogSeverity
{
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key ddlanguage as Language,
@ObjectModel.foreignKey.association: '_JITApplicationLogSeverity'
@ObjectModel.text.element: ['JITApplicationLogSeverityTxt']
key case substring( domvalue_l, 1, 1 )
when '0' then 0
when '1' then 1
when '2' then 2
when '3' then 3
else 0
end as JITApplicationLogSeverity,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
ddtext as JITApplicationLogSeverityTxt,
_Language,
_JITApplicationLogSeverity
}
where
domname = 'NJIT_APPLICATION_LOG_SEVERITY'
and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_JITAPPLICATIONLOGSEVERITY",
"I_LANGUAGE"
],
"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