I_JITOutbApplLogSeverityText

DDL: I_JITOUTBAPPLLOGSEVERITYTEXT SQL: IJITOAPPLGSVRTYT Type: view BASIC

Application log severity - Text

I_JITOutbApplLogSeverityText is a Basic CDS View that provides data about "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_JITOutbApplLogSeverity _JITOutbApplLogSeverity $projection.JITApplicationLogSeverity = _JITOutbApplLogSeverity.JITApplicationLogSeverity

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IJITOAPPLGSVRTYT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Application log severity - Text view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #TEXT view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage
JITApplicationLogSeverityTxt ddtext
_Language _Language
_JITOutbApplLogSeverity _JITOutbApplLogSeverity
@AbapCatalog.sqlViewName: 'IJITOAPPLGSVRTYT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Application log severity - Text'
@VDM.viewType             : #BASIC
@ObjectModel: {
    usageType: {
      dataClass           : #MASTER,
      serviceQuality      : #C,
      sizeCategory        : #S
  },
   dataCategory          : #TEXT
}
@ClientHandling: {
    type                  : #INHERITED,
    algorithm             : #SESSION_VARIABLE
}

define view I_JITOutbApplLogSeverityText
  as select from dd07t
  association [0..1] to I_Language               as _Language               on $projection.Language = _Language.Language
  association [0..1] to I_JITOutbApplLogSeverity as _JITOutbApplLogSeverity on $projection.JITApplicationLogSeverity = _JITOutbApplLogSeverity.JITApplicationLogSeverity
{
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key ddlanguage as Language,
      @ObjectModel.text.element: ['JITApplicationLogSeverityTxt']
  key case substring( domvalue_l, 1, 1 )
    when '1' then 1
    when '2' then 2
    when '3' then 3
    when '4' then 4
    when '5' then 5
    when '6' then 6
    when '7' then 7
    when '8' then 8
    else  3
  end            as JITApplicationLogSeverity,
      ddtext     as JITApplicationLogSeverityTxt,

      //Associations

      _Language,
      _JITOutbApplLogSeverity
}
where
      domname  = 'NJIT_LOG_SEVERITY'
  and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_JITOUTBAPPLLOGSEVERITY",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/