SEPM_I_BusinessPartnerRoleText

DDL: SEPM_I_BUSINESSPARTNERROLETEXT SQL: SEPM_IBUPAROLET Type: view

EPM Demo: Business Partner Role Text

SEPM_I_BusinessPartnerRoleText is a CDS View that provides data about "EPM Demo: Business Partner Role Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields BusinessPartnerRole, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] SEPM_I_BusinessPartnerRole _BusinessPartnerRole $projection.BusinessPartnerRole = _BusinessPartnerRole.BusinessPartnerRole
[0..1] SEPM_I_Language _Language $projection.Language = _Language.Language

Annotations (9)

NameValueLevelField
EndUserText.label EPM Demo: Business Partner Role Text view
ObjectModel.dataCategory #TEXT view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey BusinessPartnerRole view
AbapCatalog.sqlViewName SEPM_IBUPAROLET view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerRole
KEY Language ddlanguage
BusinessPartnerRoleName ddtext
_BusinessPartnerRole _BusinessPartnerRole
_Language _Language
@EndUserText.label: 'EPM Demo: Business Partner Role Text'
@ObjectModel.dataCategory: #TEXT
@Analytics.dataExtraction.enabled: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
//@VDM.viewType: #BASIC

@ObjectModel.representativeKey: 'BusinessPartnerRole'
@AbapCatalog.sqlViewName: 'SEPM_IBUPAROLET'

@ObjectModel.usageType.serviceQuality:#C
@ObjectModel.usageType.sizeCategory:#S
@ObjectModel.usageType.dataClass: #MASTER

define view SEPM_I_BusinessPartnerRoleText 
  as select from dd07t
  
  association [0..1] to SEPM_I_BusinessPartnerRole as _BusinessPartnerRole 
    on $projection.BusinessPartnerRole = _BusinessPartnerRole.BusinessPartnerRole
  association [0..1] to SEPM_I_Language as _Language 
    on $projection.Language = _Language.Language
    
{
  @ObjectModel.foreignKey.association: '_BusinessPartnerRole'
  key cast ( substring( domvalue_l, 1, 3 ) as snwd_business_partner_role preserving type ) as BusinessPartnerRole, 
  @Semantics.language: true
  @ObjectModel.foreignKey.association: '_Language'
  key ddlanguage as Language,
  @Semantics.text: true
  ddtext as BusinessPartnerRoleName, 
  _BusinessPartnerRole,
  _Language
}
where domname  = 'D_BP_ROLE' 
  and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"SEPM_I_BUSINESSPARTNERROLE",
"SEPM_I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/