I_BPRatingProcedureGrade

DDL: I_BPRATINGPROCEDUREGRADE Type: view BASIC Package: FS_BP_CDS_BP1012

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. It is exposed through 1 OData service (BPFINANCIALSERVICES). Part of development package FS_BP_CDS_BP1012.

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
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #NOT_ALLOWED view
ObjectModel.representativeKey BusinessPartnerRatingGrade view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.sapObjectNodeType.name BusinessPartnerRatingGradeCode view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Rating Procedure Grade of BP view

OData Services (1)

ServiceBindingVersionContractRelease
BPFINANCIALSERVICES UI_BPFINANCIALSERVICES_02 V2 C1 NOT_RELEASED

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',
                compiler.compareFilter: true,
                buffering.status: #NOT_ALLOWED
              }
@ObjectModel: { representativeKey: 'BusinessPartnerRatingGrade',
                usageType: { dataClass: #MASTER,
                             serviceQuality: #A,
                             sizeCategory: #S
                           },  
                sapObjectNodeType.name: 'BusinessPartnerRatingGradeCode',
                supportedCapabilities: [  #ANALYTICAL_DIMENSION,
                                          #CDS_MODELING_DATA_SOURCE,
                                          #CDS_MODELING_ASSOCIATION_TARGET,
                                          #SQL_DATA_SOURCE,
                                          #EXTRACTION_DATA_SOURCE ],
                modelingPattern: #ANALYTICAL_DIMENSION                
              }
@Analytics: { dataExtraction.enabled: true,
              dataCategory: #DIMENSION,
              internalName: #LOCAL 
            }
@Metadata: { allowExtensions:true, 
             ignorePropagatedAnnotations: true // For C1-Release

           }
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Rating Procedure Grade of BP'

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
}