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.
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 | |
| 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)
| 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'
@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
}
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