I_BPRatingProcedureGrade

DDL: I_BPRATINGPROCEDUREGRADE SQL: IBPRATGPROCGRADE Type: view BASIC

Rating Procedure Grade of BP

I_BPRatingProcedureGrade is a Basic CDS View (Dimension) that provides data about "Rating Procedure Grade of BP" in SAP S/4HANA. It reads from 1 data source (tpz22) and exposes 6 fields with key fields BusinessPartnerRatingProcedure, BusinessPartnerRatingGrade. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tpz22 tpz22 from

Associations (3)

CardinalityTargetAliasCondition
[0..*] I_BPRatgProcedureGradeText _Text $projection.BusinessPartnerRatingProcedure = _Text.BusinessPartnerRatingProcedure and $projection.BusinessPartnerRatingGrade = _Text.BusinessPartnerRatingGrade
[0..1] I_BPRatingProcedure _RatingProcedure $projection.BusinessPartnerRatingProcedure = _RatingProcedure.BusinessPartnerRatingProcedure
[0..*] I_BusinessPartnerRating _BPRating $projection.BusinessPartnerRatingProcedure = _BPRating.BusinessPartnerRatingProcedure and $projection.BusinessPartnerRatingGrade = _BPRating.BusinessPartnerRatingGrade

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IBPRATGPROCGRADE view
EndUserText.label Rating Procedure Grade of BP 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
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
ObjectModel.supportedCapabilities #EXTRACTION_DATA_SOURCE view
ObjectModel.representativeKey BusinessPartnerRatingGrade view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
Metadata.allowExtensions true view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerRatingProcedure tpz22 grade_method
KEY BusinessPartnerRatingGrade tpz22 grade
BusinessPartnerRatingRanking tpz22 ranking
_BPRating _BPRating
_RatingProcedure _RatingProcedure
_Text _Text
@AbapCatalog.sqlViewName: 'IBPRATGPROCGRADE'
@EndUserText.label: 'Rating Procedure Grade of BP'

@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
@Analytics.dataCategory: #DIMENSION
@Analytics.dataExtraction.enabled: true // use only if view is customizing or small master data

@Analytics.internalName: #LOCAL
@ObjectModel.supportedCapabilities: #EXTRACTION_DATA_SOURCE // for API Hub

@ObjectModel.representativeKey: 'BusinessPartnerRatingGrade'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #S
@Metadata.allowExtensions:true
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations: true // For C1-Release


define view I_BPRatingProcedureGrade
  as select from tpz22

  association [0..*] to I_BPRatgProcedureGradeText   as _Text            on  $projection.BusinessPartnerRatingProcedure = _Text.BusinessPartnerRatingProcedure
                                                                         and $projection.BusinessPartnerRatingGrade     = _Text.BusinessPartnerRatingGrade

  association [0..1] to I_BPRatingProcedure          as _RatingProcedure on  $projection.BusinessPartnerRatingProcedure = _RatingProcedure.BusinessPartnerRatingProcedure

  association [0..*] to I_BusinessPartnerRating      as _BPRating        on  $projection.BusinessPartnerRatingProcedure = _BPRating.BusinessPartnerRatingProcedure
                                                                         and $projection.BusinessPartnerRatingGrade     = _BPRating.BusinessPartnerRatingGrade

{      
      @ObjectModel.foreignKey.association: '_RatingProcedure'
  key tpz22.grade_method as BusinessPartnerRatingProcedure,
      @ObjectModel.text.association: '_Text'
  key tpz22.grade        as BusinessPartnerRatingGrade,

      tpz22.ranking      as BusinessPartnerRatingRanking,

      _BPRating,
      _RatingProcedure,
      _Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TPZ22"
],
"ASSOCIATED":
[
"I_BPRATGPROCEDUREGRADETEXT",
"I_BPRATINGPROCEDURE",
"I_BUSINESSPARTNERRATING"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/