I_ChmlComponentOptrUprLmtT

DDL: I_CHMLCOMPONENTOPTRUPRLMTT Type: view BASIC

Description of Operator of Upper Limit

I_ChmlComponentOptrUprLmtT is a Basic CDS View that provides data about "Description of Operator of Upper Limit" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 1 field. 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 (11)

NameValueLevelField
EndUserText.label Description of Operator of Upper Limit view
AbapCatalog.sqlViewName ICCCMPOPUPRT 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 #META view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey ChmlCompOperatorUpperLimit view

Fields (1)

KeyFieldSource TableSource FieldDescription
_Language _Language
@EndUserText.label: 'Description of Operator of Upper Limit'

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

// authorization check not required as view only reads domain values

@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: #META,
    serviceQuality: #B,
    sizeCategory: #S
  },
  --Representative Key
  representativeKey: 'ChmlCompOperatorUpperLimit'
}
define view I_ChmlComponentOptrUprLmtT
  --Select data from domain value description table
  as select from dd07t

  --association to I_Language
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      --Domain Value of Operator of Lower Limit
  key substring(domvalue_l, 1, 5)   as ChmlCompOperatorUpperLimit,

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

      --language-dependent description of domain value
      @Semantics.text: true
      ddtext                        as ChmlCompOperatorUpperLimitName,

      /* Associations */
      _Language
}
where
      domname  = 'EHFND_CCI_CCOMP_UPPER_OPERATOR'
  and as4local = 'A'