I_JITApplicationLogSeverityTxt

DDL: I_JITAPPLICATIONLOGSEVERITYTXT Type: view_entity BASIC

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)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_JITApplicationLogSeverity _JITApplicationLogSeverity $projection.JITApplicationLogSeverity = _JITApplicationLogSeverity.JITApplicationLogSeverity

Annotations (8)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/