R_ClfnClassKeywordTP

DDL: R_CLFNCLASSKEYWORDTP Type: view_entity TRANSACTIONAL Package: NGC_CORE_VDM

Classification Class Keyword - TP

R_ClfnClassKeywordTP is a Transactional CDS View that provides data about "Classification Class Keyword - TP" in SAP S/4HANA. It reads from 2 data sources (I_ClfnClass, I_ClfnClassKeyword) and exposes 9 fields with key fields Class, ClassType, Language, ClassKeywordPositionNumber. It has 1 association to related views. Part of development package NGC_CORE_VDM.

Data Sources (2)

SourceAliasJoin Type
I_ClfnClass Class from
I_ClfnClassKeyword Keyword inner

Associations (1)

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

Annotations (9)

NameValueLevelField
EndUserText.label Classification Class Keyword - TP view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #TRANSACTIONAL view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY Class I_ClfnClass Class
KEY ClassType I_ClfnClass ClassType
KEY Language I_ClfnClassKeyword Language
KEY ClassKeywordPositionNumber I_ClfnClassKeyword ClassKeywordPositionNumber
ClassInternalID I_ClfnClassKeyword ClassInternalID
ClassKeywordText I_ClfnClassKeyword ClassKeywordText
LastChangeDateTime I_ClfnClass ClassLastChangedDateTime
_Parent _Parent
_Language _Language
@EndUserText.label: 'Classification Class Keyword - TP'

@AccessControl.authorizationCheck: #MANDATORY
@AccessControl.personalData.blocking: #NOT_REQUIRED

@Metadata.ignorePropagatedAnnotations: true

@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #M, dataClass: #MASTER}

@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #TRANSACTIONAL

define view entity R_ClfnClassKeywordTP
as select from I_ClfnClass as Class
  inner join I_ClfnClassKeyword as Keyword
    on Keyword.ClassInternalID = Class.ClassInternalID
   
  association to parent R_ClfnClassTP as _Parent on
    $projection.Class             = _Parent.Class and
    $projection.ClassType         = _Parent.ClassType

  association [0..1] to I_Language as _Language 
    on $projection.Language       = _Language.Language
                  
{
  key Class.Class,
  key Class.ClassType,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true  
  key Keyword.Language, 
  key Keyword.ClassKeywordPositionNumber,
  
      Keyword.ClassInternalID,  
      
      @Semantics.text: true
      Keyword.ClassKeywordText,
      
      Class.ClassLastChangedDateTime as LastChangeDateTime,
      
      @ObjectModel.filter.enabled: false
      @ObjectModel.sort.enabled: false  
      _Parent,
      
      _Language
 
}