I_ApplicationText

DDL: I_APPLICATIONTEXT Type: view BASIC Package: EHFND_PRODUCT_MASTER_COMN

Language-Dependent Description of Application

I_ApplicationText is a Basic CDS View that provides data about "Language-Dependent Description of Application" in SAP S/4HANA. It reads from 1 data source (ehfndc_applict) and exposes 2 fields. It has 1 association to related views. Part of development package EHFND_PRODUCT_MASTER_COMN.

Data Sources (1)

SourceAliasJoin Type
ehfndc_applict ApplicationText from

Associations (1)

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

Annotations (11)

NameValueLevelField
EndUserText.label Language-Dependent Description of Application view
AbapCatalog.sqlViewName IAPPLICT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ChmlCmplncApplication view

Fields (2)

KeyFieldSource TableSource FieldDescription
languassprasasLanguage
_Language _Language
@EndUserText.label: 'Language-Dependent Description of Application'

@AbapCatalog:
{
  sqlViewName: 'IAPPLICT',
  compiler.compareFilter: true
}

--Access Control
// no authorization check required because view only reads customizing for which a check is not needed

@AccessControl.authorizationCheck: #NOT_REQUIRED

--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE

--VDM Type
@VDM.viewType: #BASIC

@ObjectModel:
{
  usageType:
  {
    dataClass: #CUSTOMIZING,
    sizeCategory: #S,
    serviceQuality: #B
  },
  dataCategory: #TEXT,

  representativeKey: 'ChmlCmplncApplication'
}

define view I_ApplicationText
  --Select data from customizing table 'Language-dependent Description of Application'
  as select from ehfndc_applict as ApplicationText

  --Link to CDS view I_Language
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      --Application
  key cast( ApplicationText.application as ehfnd_cci_application_nce preserving type ) as ChmlCmplncApplication,

      --Language
      @Semantics.language: true
  key cast( ApplicationText.langu as spras )                                           as Language,

      --Description of Application
      @Semantics.text: true
      ApplicationText.application_description                                          as ChmlCmplncApplicationName,

      /* Associations */
      _Language

}