I_BPRatingProcedureGrade
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)
| Source | Alias | Join Type |
|---|---|---|
| tpz22 | tpz22 | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [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)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| BPFINANCIALSERVICES | UI_BPFINANCIALSERVICES_02 | V2 | C1 | NOT_RELEASED |
@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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA