R_ClfnClassDescriptionTP

DDL: R_CLFNCLASSDESCRIPTIONTP Type: view_entity TRANSACTIONAL Package: NGC_CORE_VDM

Classification Class Description - TP

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

Data Sources (2)

SourceAliasJoin Type
I_ClfnClass Class from
I_ClfnClassDescription Description inner

Associations (1)

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

Annotations (9)

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

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Class I_ClfnClass Class
KEY ClassType I_ClfnClass ClassType
KEY Language I_ClfnClassDescription Language
ClassInternalID I_ClfnClassDescription ClassInternalID
ClassDescription I_ClfnClassDescription ClassDescription
LastChangeDateTime I_ClfnClass ClassLastChangedDateTime
_Parent _Parent
_Language _Language
@EndUserText.label: 'Classification Class Description - TP'

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

@Metadata.ignorePropagatedAnnotations: true

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

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

define view entity R_ClfnClassDescriptionTP
as select from I_ClfnClass as Class
  inner join I_ClfnClassDescription as Description
    on Description.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 Description.Language, 
  
      Description.ClassInternalID, 
            
      @Semantics.text: true
      Description.ClassDescription,
      
      Class.ClassLastChangedDateTime as LastChangeDateTime,
      
      @ObjectModel.filter.enabled: false
      @ObjectModel.sort.enabled: false
      _Parent,
      
      _Language
 
}