I_SLCPartyTypeText

DDL: I_SLCPARTYTYPETEXT SQL: ISLCPARTYTYPET Type: view BASIC

Party Type - Text

I_SLCPartyTypeText is a Basic CDS View that provides data about "Party Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields SLCPartyType, 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_SLCPartyType _SLCPartyType $projection.SLCPartyType = _SLCPartyType.SLCPartyType

Annotations (13)

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

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SLCPartyType
KEY Language ddlanguage
SLCPartyTypeName ddtext
_SLCPartyType _SLCPartyType
_Language _Language
@EndUserText.label: 'Party Type - Text'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@AbapCatalog.compiler.compareFilter: true
@Metadata.ignorePropagatedAnnotations: true
@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 
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'SLCPartyType'
@AbapCatalog.sqlViewName: 'ISLCPARTYTYPET'
define view I_SLCPartyTypeText as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
  association [1..1] to I_SLCPartyType as _SLCPartyType on $projection.SLCPartyType = _SLCPartyType.SLCPartyType
{
  key cast ( substring( domvalue_l, 1, 1 ) as /srmsmc/party_type ) as SLCPartyType,

  @Semantics.language: true
  key ddlanguage as Language,

  @Semantics.text: true
  ddtext as SLCPartyTypeName,

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