I_ChmlCompositionTypeText

DDL: I_CHMLCOMPOSITIONTYPETEXT Type: view BASIC

Language-Dependent Description of Chemical Composition Type

I_ChmlCompositionTypeText is a Basic CDS View that provides data about "Language-Dependent Description of Chemical Composition Type" in SAP S/4HANA. It reads from 1 data source (ehfndc_cmpstypet) and exposes 3 fields. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
ehfndc_cmpstypet CompositonTypeText from

Associations (1)

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

Annotations (11)

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

Fields (3)

KeyFieldSource TableSource FieldDescription
composition_typeasChmlCompositionType
languasLanguage
_Language _Language
@EndUserText.label: 'Language-Dependent Description of Chemical Composition Type'

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

// 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.viewType: #BASIC

@ObjectModel:
{
  --Data category
  dataCategory: #TEXT,
  --Performance annotation
  usageType:
  {
    dataClass: #CUSTOMIZING,
    serviceQuality: #B,
    sizeCategory: #S
  },
  --Representative Key
  representativeKey: 'ChmlCompositionType'
}

define view I_ChmlCompositionTypeText
  --Select data from domain value description table
  as select from ehfndc_cmpstypet as CompositonTypeText

  --association to I_Language
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      --Domain of Composition Type
  key CompositonTypeText.composition_type      as ChmlCompositionType,

      --Language
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key CompositonTypeText.langu                 as Language,

      --language-dependent description of domain value
      @Semantics.text: true
      CompositonTypeText.cmps_type_description as ChmlCompositionTypeName,
      
      /* Associations */
      _Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"EHFNDC_CMPSTYPET"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"VERSION":0
}
}*/