I_ABAPSoftwareComponentText

DDL: I_ABAPSOFTWARECOMPONENTTEXT Type: view_entity BASIC Package: SAUD

ABAP Software Component Text

I_ABAPSoftwareComponentText is a Basic CDS View that provides data about "ABAP Software Component Text" in SAP S/4HANA. It reads from 1 data source (cvers_ref) and exposes 5 fields with key fields ABAPSoftwareComponent, Language. It has 1 association to related views. Part of development package SAUD.

Data Sources (1)

SourceAliasJoin Type
cvers_ref cvers_ref from

Associations (1)

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

Annotations (5)

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

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ABAPSoftwareComponent component
KEY Language langu
ABAPSoftwareComponentName desc_text
_ABAPSoftwareComponent _ABAPSoftwareComponent
_Language _Language
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'ABAP Software Component Text'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory:#TEXT
@ObjectModel.representativeKey: 'ABAPSoftwareComponent'
define view entity I_ABAPSoftwareComponentText
  as select from cvers_ref
  association to parent I_ABAPSoftwareComponent as _ABAPSoftwareComponent on $projection.ABAPSoftwareComponent = _ABAPSoftwareComponent.ABAPSoftwareComponent
  association [0..1] to I_Language              as _Language              on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_ABAPSoftwareComponent'
  key component as ABAPSoftwareComponent,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key langu     as Language,
      @Semantics.text: true
      desc_text as ABAPSoftwareComponentName,
      // @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT] -- no more needed

      _ABAPSoftwareComponent,
      _Language
}