I_BUSINESSPARTNERROLETEXT
Business Partner Role- Text
I_BUSINESSPARTNERROLETEXT is a CDS View in S/4HANA. Business Partner Role- Text. 3 CDS views read from this table.
CDS Views using this table (3)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_BPRoleText | view | from | BASIC | BusinessPartner role text |
| I_LCMEntityTypeByBPRoleText | view | from | BASIC | Entity Type by Bus Partner Role - Text |
| I_MstrProjBusPartRoleCodeTxt | view | from | BASIC | Master Project Business Partner Role Code Text |
@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
}