I_BusEvtLogFieldConstantText

DDL: I_BUSEVTLOGFIELDCONSTANTTEXT Type: view_entity BASIC

Field Constant - Text

I_BusEvtLogFieldConstantText is a Basic CDS View that provides data about "Field Constant - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields BusEvtLogFieldConstant, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Field Constant - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey BusEvtLogFieldConstant view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BusEvtLogFieldConstant
KEY Language
BusEvtLogFieldConstantText Field Constant Text
_Language _Language
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Field Constant - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
  dataCategory: #TEXT,
  representativeKey: 'BusEvtLogFieldConstant',
  usageType: {
      serviceQuality: #A,
      sizeCategory: #S,
      dataClass: #CUSTOMIZING
  }
}
@VDM.viewType: #BASIC
@VDM.lifecycle: {
    contract: {
        type: #SAP_INTERNAL_API
    }
}

define view entity I_BusEvtLogFieldConstantText
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language

{

  key cast(domvalue_l as bel_field_constant) as BusEvtLogFieldConstant,

      @Semantics.language
      @ObjectModel.foreignKey.association: '_Language'
  key cast(ddlanguage as spras)              as Language,

      @EndUserText.label: 'Field Constant Text'
      @Semantics.text
      cast(ddtext as scrtext_l) as BusEvtLogFieldConstantText,

      _Language

}
where
      domname  = 'BEL_NO_FIELD_DATA'
  and as4local = 'A'
  and domvalue_l = '1';