I_BusinessPartnerRoleText

DDL: I_BUSINESSPARTNERROLETEXT SQL: IBPROLETXT Type: view BASIC Package: VDM_MD_BP_BASE

Business Partner Role- Text

I_BusinessPartnerRoleText is a Basic CDS View that provides data about "Business Partner Role- Text" in SAP S/4HANA. It reads from 1 data source (tb003t) and exposes 6 fields with key fields Client, BusinessPartnerRole, Language. It has 2 associations to related views. Part of development package VDM_MD_BP_BASE.

Data Sources (1)

SourceAliasJoin Type
tb003t tb003t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_BusinessPartnerRole _BusinessPartnerRole $projection.BusinessPartnerRole = _BusinessPartnerRole.BusinessPartnerRole

Annotations (13)

NameValueLevelField
EndUserText.label Business Partner Role- Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey BusinessPartnerRole view
AbapCatalog.sqlViewName IBPROLETXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Client client
KEY BusinessPartnerRole role
KEY Language spras
BusinessPartnerRoleShortName rltitl Role Description
_BusinessPartnerRole _BusinessPartnerRole
_Language _Language
@EndUserText.label: 'Business Partner Role- Text' //'Business Partner Role Text' //same as DDL description

@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@Analytics.dataExtraction.enabled: true
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.representativeKey: 'BusinessPartnerRole'
@AbapCatalog.sqlViewName: 'IBPROLETXT'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET,
                            #EXTRACTION_DATA_SOURCE , #ANALYTICAL_DIMENSION ]
@ClientHandling.algorithm : #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true

define view I_BusinessPartnerRoleText //must start with 'I_' and end with 'Text' or 'T'

  as select from tb003t
  association [0..1] to I_Language            as _Language            on $projection.Language = _Language.Language
  association [1..1] to I_BusinessPartnerRole as _BusinessPartnerRole on $projection.BusinessPartnerRole = _BusinessPartnerRole.BusinessPartnerRole
{
  key client as Client,
  key role   as BusinessPartnerRole,
      @Semantics.language: true
  key spras  as Language, //text views shall always be language dependent

      @Semantics.text: true
      @EndUserText.label: 'Role Description'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      rltitl as BusinessPartnerRoleShortName,
      _BusinessPartnerRole, //decomment only if no problems in analytics

      _Language

}