I_BPRatingTrendText

DDL: I_BPRATINGTRENDTEXT SQL: IBPRATGTRENDTEXT Type: view BASIC

Rating Trend of BP - Text

I_BPRatingTrendText is a Basic CDS View that provides data about "Rating Trend of BP - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, BusinessPartnerRatingTrend. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

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

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IBPRATGTRENDTEXT view
EndUserText.label Rating Trend of BP - Text view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.buffering.status #NOT_ALLOWED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey BusinessPartnerRatingTrend view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language dd07t ddlanguage
KEY BusinessPartnerRatingTrend
BusinessPartnerRatingTrendDesc dd07t ddtext
_BPRatingTrend _BPRatingTrend
_Language _Language
@AbapCatalog.sqlViewName: 'IBPRATGTRENDTEXT'
@EndUserText.label: 'Rating Trend of BP - Text '

@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.buffering.status: #NOT_ALLOWED
// @AbapCatalog.preserveKey // only if required by ATC check

@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'BusinessPartnerRatingTrend'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #S
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations: true // For C1-Release


/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_BPRatingTrendText

  as select from dd07t
  association [0..1] to I_BPRatingTrend as _BPRatingTrend on $projection.BusinessPartnerRatingTrend = _BPRatingTrend.BusinessPartnerRatingTrend
  association [0..1] to I_Language      as _Language      on $projection.Language                   = _Language.Language
{

      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key dd07t.ddlanguage as Language,
  
      @ObjectModel.text.element: 'BusinessPartnerRatingTrendDesc'
      @ObjectModel.foreignKey.association: '_BPRatingTrend'
  key cast ( dd07t.domvalue_l as bp_tendency ) as BusinessPartnerRatingTrend,
      @Semantics.text: true
      
      dd07t.ddtext     as BusinessPartnerRatingTrendDesc,
      
      _BPRatingTrend,
      _Language

}
where
      dd07t.domname  = 'BP_TENDENCY'
  and dd07t.as4local = 'A'