I_ClfnClassDescForKeyDate

DDL: I_CLFNCLASSDESCFORKEYDATE SQL: INGCCLS13 Type: view COMPOSITE Package: NGC_CORE_VDM

Description of Clfn Class for Key Date

I_ClfnClassDescForKeyDate is a Composite CDS View that provides data about "Description of Clfn Class for Key Date" in SAP S/4HANA. It reads from 1 data source (I_ClfnClassDescription) and exposes 4 fields with key fields ClassInternalID, Language. It has 1 association to related views. Part of development package NGC_CORE_VDM.

Data Sources (1)

SourceAliasJoin Type
I_ClfnClassDescription I_ClfnClassDescription from

Parameters (1)

NameTypeDefault
P_KeyDate sydate

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_ClfnClassForKeyDate _Class $projection.ClassInternalID = _Class.ClassInternalID

Annotations (15)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName INGCCLS13 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Description of Clfn Class for Key Date view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ClassInternalID view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ClassInternalID ClassInternalID
KEY Language Language
ClassDescription ClassDescription
_Class _Class
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'INGCCLS13'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Description of Clfn Class for Key Date'
@VDM.viewType: #COMPOSITE
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@Metadata.ignorePropagatedAnnotations: true

@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'ClassInternalID'
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities:
  [  #LANGUAGE_DEPENDENT_TEXT,
     #CDS_MODELING_DATA_SOURCE,
     #CDS_MODELING_ASSOCIATION_TARGET,
     #SQL_DATA_SOURCE                  ]
// Although we know that class description is a time independent data,

// this view was introduced to be able to cut time dependent business layer

// completely from time independent one. (Plus P_KeyDate is used in DCL.)

define view I_ClfnClassDescForKeyDate
  with parameters
    @Consumption.hidden: true
    @Environment.systemField: #SYSTEM_DATE
    P_KeyDate :sydate
  as select from I_ClfnClassDescription 
     association [1..1] to I_ClfnClassForKeyDate as _Class
        on $projection.ClassInternalID = _Class.ClassInternalID 
 {        
  key ClassInternalID, 
      @Semantics.language: true
  key Language, 
      @Semantics.text: true
      ClassDescription,
      
      _Class
 }