I_BusinessPartnerRole

DDL: I_BUSINESSPARTNERROLE SQL: IBPROLE Type: view BASIC

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)

SourceAliasJoin Type
tb003 tb003 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BusinessPartnerRoleText _BusinessPartnerRoleText $projection.BusinessPartnerRole = _BusinessPartnerRoleText.BusinessPartnerRole

Annotations (16)

NameValueLevelField
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

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerRole tb003 role
RoleCategory tb003 rolecategory
_BusinessPartnerRoleText _BusinessPartnerRoleText
@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":""
}
}*/