I_REPartnerRoleType
Real Estate BP Role Type
I_REPartnerRoleType is a Basic CDS View that provides data about "Real Estate BP Role Type" in SAP S/4HANA. It reads from 1 data source (tivbpsubrole) and exposes 3 fields with key fields BusinessPartnerRole, REPartnerRoleType. It has 1 association to related views. Part of development package VDM_RE_BP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tivbpsubrole | tivbpsubrole | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_REPartnerRoleTypeText | _Text | $projection.BusinessPartnerRole = _Text.BusinessPartnerRole and $projection.REPartnerRoleType = _Text.REPartnerRoleType |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IREBPROLETYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Real Estate BP Role Type | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessPartnerRole | role | ||
| KEY | REPartnerRoleType | subrole | ||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IREBPROLETYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Real Estate BP Role Type'
//@Analytics:{
// dataCategory: #DIMENSION,
// internalName: #LOCAL,
// dataExtraction: {
// enabled: true
// delta.changeDataCapture: {
// automatic: true
// }
// }
//}
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.representativeKey: ['BusinessPartnerRole', 'REPartnerRoleType' ]
@ObjectModel.semanticKey: ['BusinessPartnerRole', 'REPartnerRoleType' ]
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_REPartnerRoleType as select from tivbpsubrole
association [0..*] to I_REPartnerRoleTypeText as _Text on $projection.BusinessPartnerRole = _Text.BusinessPartnerRole
and $projection.REPartnerRoleType = _Text.REPartnerRoleType
{
@ObjectModel.text.association: '_Text'
key role as BusinessPartnerRole,
@ObjectModel.text.association: '_Text'
key subrole as REPartnerRoleType,
_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