I_BusinessPartnerRole
Business Partner Role
I_BusinessPartnerRole is a Basic CDS View (Dimension) that provides data about "Business Partner Role" in SAP S/4HANA. It reads from 1 data source (tb003) and exposes 3 fields with key field BusinessPartnerRole. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tb003 | tb003 | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_BusinessPartnerRoleText | _BusinessPartnerRoleText | $projection.BusinessPartnerRole = _BusinessPartnerRoleText.BusinessPartnerRole |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Business Partner Role | view | |
| VDM.viewType | #BASIC | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AbapCatalog.sqlViewName | IBPROLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.sapObjectNodeType.name | BusinessPartnerRole | view | |
| ObjectModel.representativeKey | BusinessPartnerRole | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Search.searchable | true | view | |
| Metadata.allowExtensions | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view |
@EndUserText.label: 'Business Partner Role'
//@Analytics.dataCategory: #DIMENSION
@VDM.viewType: #BASIC
@Analytics: {
dataCategory: #DIMENSION,
dataExtraction: {
enabled: true
}
}
@AccessControl.authorizationCheck: #CHECK
@AbapCatalog.sqlViewName: 'IBPROLE'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.sapObjectNodeType.name: 'BusinessPartnerRole'
@ObjectModel.representativeKey: 'BusinessPartnerRole'
@ClientHandling.algorithm : #SESSION_VARIABLE
@Search.searchable: true
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities: [ #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE ,
#EXTRACTION_DATA_SOURCE , #ANALYTICAL_DIMENSION ]
@ObjectModel.dataCategory: #VALUE_HELP
define view I_BusinessPartnerRole
as select from tb003
association [0..*] to I_BusinessPartnerRoleText as _BusinessPartnerRoleText on $projection.BusinessPartnerRole = _BusinessPartnerRoleText.BusinessPartnerRole
{
@ObjectModel.text.association: '_BusinessPartnerRoleText'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
key tb003.role as BusinessPartnerRole,
@UI.hidden: true
tb003.rolecategory as RoleCategory,
_BusinessPartnerRoleText
} where tb003.xsuppress <> 'X' and tb003.rolecategory <> ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TB003"
],
"ASSOCIATED":
[
"I_BUSINESSPARTNERROLETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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