I_PRAMonthText

DDL: I_PRAMONTHTEXT SQL: IPRAMONTHTEXT Type: view BASIC

Month - Text

I_PRAMonthText is a Basic CDS View that provides data about "Month - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields PRACalendarMonth, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (13)

NameValueLevelField
EndUserText.label Month - Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IPRAMONTHTEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #META view
ObjectModel.representativeKey PRACalendarMonth view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY PRACalendarMonth
KEY Language
PRACalendarMonthText ddtext
_Language _Language
@EndUserText.label: 'Month - Text'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IPRAMONTHTEXT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations:true
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true

@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #META
@ObjectModel.representativeKey: 'PRACalendarMonth'
@UI.presentationVariant: [{sortOrder: [{by: 'PRACalendarMonth'}]}]
define view I_PRAMonthText
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language

{
  key cast ( cast( substring( domvalue_l, 1, 2 ) as abap.numc(2) ) as oiu_month ) as PRACalendarMonth,

      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key cast( ddlanguage as spras preserving type )                                 as Language,

      @Semantics.text
      ddtext                                                                      as PRACalendarMonthText,

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