I_SLCPartyRoleText

DDL: I_SLCPARTYROLETEXT SQL: ISLCPARTYROLET Type: view BASIC

Party Role - Text

I_SLCPartyRoleText is a Basic CDS View that provides data about "Party Role - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields SLCPartyRole, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_SLCPartyRole _SLCPartyRole $projection.SLCPartyRole = _SLCPartyRole.SLCPartyRole

Annotations (13)

NameValueLevelField
EndUserText.label Party Role - Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey SLCPartyRole view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ISLCPARTYROLET view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SLCPartyRole
KEY Language ddlanguage
SLCPartyRoleName
_SLCPartyRole _SLCPartyRole
_Language _Language
@EndUserText.label: 'Party Role - Text'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@Metadata.ignorePropagatedAnnotations: true
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'SLCPartyRole'
@ObjectModel.usageType.dataClass:  #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.supportedCapabilities: 
[ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #LANGUAGE_DEPENDENT_TEXT ]
@ClientHandling.algorithm: #SESSION_VARIABLE 
@AbapCatalog.sqlViewName: 'ISLCPARTYROLET'
define view I_SLCPartyRoleText 
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
  association [1..1] to I_SLCPartyRole as _SLCPartyRole on $projection.SLCPartyRole = _SLCPartyRole.SLCPartyRole
{
  key cast ( substring( domvalue_l, 1, 3 ) as /srmsmc/party_role_code preserving type) as SLCPartyRole,

  @Semantics.language: true
  key ddlanguage as Language,

  @Semantics.text: true
  cast(ddtext as /srmsmc/role_description preserving type) as SLCPartyRoleName, 

  _SLCPartyRole,
  _Language 
}
where domname = '/SRMSMC/PARTY_ROLE_CODE' and as4local = 'A'
     
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SLCPARTYROLE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/