I_ABAPApplCompText

DDL: I_ABAPAPPLCOMPTEXT Type: view_entity BASIC

ABAP Application Component Text

I_ABAPApplCompText is a Basic CDS View that provides data about "ABAP Application Component Text" in SAP S/4HANA. It reads from 1 data source (df14t) and exposes 5 fields with key fields Language, ABAPApplicationComponent. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
df14t df14t from

Associations (1)

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

Annotations (5)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label ABAP Application Component Text view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ABAPApplicationComponent view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language langu
KEY ABAPApplicationComponent fctr_id
ABAPApplicationComponentName name
_ABAPApplicationComponent _ABAPApplicationComponent
_Language _Language
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'ABAP Application Component Text'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory:#TEXT
@ObjectModel.representativeKey: 'ABAPApplicationComponent'
define view entity I_ABAPApplCompText
  as select from df14t
  association to parent I_ABAPApplicationComponent as _ABAPApplicationComponent on $projection.ABAPApplicationComponent = _ABAPApplicationComponent.ABAPApplicationComponent
  association [0..1] to I_Language                 as _Language                 on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key langu   as Language,
      @ObjectModel.foreignKey.association: '_ABAPApplicationComponent'
  key fctr_id as ABAPApplicationComponent,
      @Semantics.text: true
      name    as ABAPApplicationComponentName,
      // @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT] -- no more needed

      _ABAPApplicationComponent,
      _Language
}
where
      addon    = ''
  and as4local = 'A'