I_BPRatingProcedure
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. Part of development package FS_BP_CDS_BP1012.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tpz21 | tpz21 | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_BPRatingProcedureText | _Text | $projection.BusinessPartnerRatingProcedure = _Text.BusinessPartnerRatingProcedure |
| [0..*] | I_BusinessPartnerRating | _BPRating | $projection.BusinessPartnerRatingProcedure = _BPRating.BusinessPartnerRatingProcedure |
Annotations (18)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBPRATGPROCED | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.buffering.status | #NOT_ALLOWED | view | |
| ObjectModel.representativeKey | BusinessPartnerRatingProcedure | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.sapObjectNodeType.name | BPRatingProcedureCode | 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 | #MANDATORY | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Rating Procedure of Business Partner | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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',
compiler.compareFilter: true,
buffering.status: #NOT_ALLOWED
}
@ObjectModel: { representativeKey: 'BusinessPartnerRatingProcedure',
usageType: { dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #S
},
sapObjectNodeType.name: 'BPRatingProcedureCode',
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: #MANDATORY
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Rating Procedure of Business Partner'
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
}
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