I_BPRatingProcedure

DDL: I_BPRATINGPROCEDURE SQL: IBPRATGPROCED Type: view BASIC

Rating Procedure of Business Partner

I_BPRatingProcedure is a Basic CDS View (Dimension) that provides data about "Rating Procedure of Business Partner" in SAP S/4HANA. It reads from 1 data source (tpz21) and exposes 7 fields with key field BusinessPartnerRatingProcedure. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tpz21 tpz21 from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_BPRatingProcedureText _Text $projection.BusinessPartnerRatingProcedure = _Text.BusinessPartnerRatingProcedure
[0..*] I_BusinessPartnerRating _BPRating $projection.BusinessPartnerRatingProcedure = _BPRating.BusinessPartnerRatingProcedure

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IBPRATGPROCED view
EndUserText.label Rating Procedure of Business Partner view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK 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 BusinessPartnerRatingProcedure 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 (7)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerRatingProcedure tpz21 grade_method
BPRatingIsRequired tpz21 flg_required
BusinessPartnerRatingIsDefault tpz21 flg_default
BPRatingStandardAccessDays tpz21 grade_meth_permitted_period
BPRatgPermittedPerdIsRelevant
_Text _Text
_BPRating _BPRating
@AbapCatalog.sqlViewName: 'IBPRATGPROCED'
@EndUserText.label: 'Rating Procedure of Business Partner'

@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@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: 'BusinessPartnerRatingProcedure'
@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_BPRatingProcedure
  as select from tpz21

  association [0..*] to I_BPRatingProcedureText as _Text     on $projection.BusinessPartnerRatingProcedure = _Text.BusinessPartnerRatingProcedure
  association [0..*] to I_BusinessPartnerRating as _BPRating on $projection.BusinessPartnerRatingProcedure = _BPRating.BusinessPartnerRatingProcedure

{
      @ObjectModel.text.association: '_Text'
  key tpz21.grade_method                as BusinessPartnerRatingProcedure,
      tpz21.flg_required                as BPRatingIsRequired,
      tpz21.flg_default                 as BusinessPartnerRatingIsDefault,
      tpz21.grade_meth_permitted_period as BPRatingStandardAccessDays,

      //obsolete

      '' as BPRatgPermittedPerdIsRelevant,

      _Text,
      _BPRating
}