I_SpecRatingText

DDL: I_SPECRATINGTEXT SQL: ISPECRATINGTEXT Type: view BASIC Package: VDM_PLMB_SPC_BAS

Specification Rating Text

I_SpecRatingText is a Basic CDS View that provides data about "Specification Rating Text" in SAP S/4HANA. It reads from 1 data source (tcg87) and exposes 5 fields with key fields SpecificationRating, Language. It has 2 associations to related views. Part of development package VDM_PLMB_SPC_BAS.

Data Sources (1)

SourceAliasJoin Type
tcg87 tcg87 from

Associations (2)

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

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ISPECRATINGTEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey SpecificationRating view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view
EndUserText.label Specification Rating Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SpecificationRating vaclid
KEY Language langu
SpecificationRatingDesc vaclnam
_SpecificationRating _SpecificationRating
_Language _Language
@AbapCatalog.sqlViewName: 'ISPECRATINGTEXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.representativeKey: 'SpecificationRating'
@ObjectModel.semanticKey:  [ 'SpecificationRating' ]

@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #BASIC

@EndUserText.label: 'Specification Rating Text'
define view I_SpecRatingText
  as select from tcg87

  association [0..1] to I_SpecRating as _SpecificationRating on $projection.SpecificationRating = _SpecificationRating.SpecificationRating
  association [0..1] to I_Language   as _Language            on $projection.Language = _Language.Language

{
      @ObjectModel.foreignKey.association: '_SpecificationRating'
  key vaclid                        as SpecificationRating,

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

      @Semantics.text: true
      vaclnam                       as SpecificationRatingDesc,

      /* Associations */
      _SpecificationRating,
      _Language

}