I_ScalesGroupText

DDL: I_SCALESGROUPTEXT SQL: ISCALESGROUPT Type: view BASIC

Scales Group - Text

I_ScalesGroupText is a Basic CDS View that provides data about "Scales Group - Text" in SAP S/4HANA. It reads from 1 data source (twwagt) and exposes 5 fields with key fields Language, ScalesGroup. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
twwagt twwagt from

Associations (1)

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

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ISCALESGROUPT view
EndUserText.label Scales Group - Text view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.supportedCapabilities #VALUE_HELP_PROVIDER view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ScalesGroup view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language spras
KEY ScalesGroup
ScalesGroupName bezei20
_ScalesGroup _ScalesGroup
_Language _Language
@AbapCatalog.sqlViewName: 'ISCALESGROUPT'
@EndUserText.label: 'Scales Group - Text'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true 
@ObjectModel: {
    supportedCapabilities: #VALUE_HELP_PROVIDER,
    dataCategory: #TEXT,
    representativeKey: 'ScalesGroup',
    usageType.serviceQuality: #A,
    usageType.sizeCategory: #S,
    usageType.dataClass: #CUSTOMIZING
}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
define view I_ScalesGroupText
  as select from twwagt
  association [0..1] to I_Language           as _Language    on $projection.Language = _Language.Language
  association        to parent I_ScalesGroup as _ScalesGroup on $projection.ScalesGroup = _ScalesGroup.ScalesGroup
{
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key spras   as Language,
      @ObjectModel.foreignKey.association: '_ScalesGroup'
      @ObjectModel.text.element: ['ScalesGroupName']
  key cast( scagr as scalesgroup preserving type ) as ScalesGroup,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @Semantics.text: true
      bezei20 as ScalesGroupName,

      _ScalesGroup,
      _Language
}