I_CalendarMonth

DDL: I_CALENDARMONTH SQL: ICALENDARMONTH Type: view BASIC

Calendar Month

I_CalendarMonth is a Basic CDS View (Dimension) that provides data about "Calendar Month" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field CalendarMonth. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CalendarMonthText _Text $projection.CalendarMonth = _Text.CalendarMonth

Annotations (14)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey CalendarMonth view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
AbapCatalog.sqlViewName ICALENDARMONTH view
AbapCatalog.preserveKey true view
EndUserText.label Calendar Month view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CalendarMonth
DomainValue dd07l domvalue_l
_Text _Text
@ClientHandling.algorithm: #SESSION_VARIABLE //Inserted by VDM CDS Suite Plugin

@ObjectModel.representativeKey: 'CalendarMonth'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #L
@AbapCatalog.sqlViewName: 'ICALENDARMONTH'
@AbapCatalog.preserveKey: true
@EndUserText.label: 'Calendar Month'
@Analytics : {dataCategory: #DIMENSION, dataExtraction.enabled : true}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations:true
@Search.searchable: true

define view I_CalendarMonth
  as select from dd07l
  association [0..*] to I_CalendarMonthText as _Text on $projection.CalendarMonth = _Text.CalendarMonth
{
      @ObjectModel.text.association: '_Text'
      //key domvalue_l as CalendarMonth,

     // @Search.defaultSearchElement : true

  key cast ( substring( domvalue_l, 1, 2 )  as calendarmonth ) as CalendarMonth,
      @Analytics.hidden: true
      @Consumption.hidden: true
      @Search.defaultSearchElement : true
      @Search.ranking: #HIGH
      dd07l.domvalue_l                                         as DomainValue,
      _Text
}
where
      dd07l.domname  = 'KMONAT'
  and dd07l.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_CALENDARMONTHTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/