I_LglCntntMVersionText

DDL: I_LGLCNTNTMVERSIONTEXT SQL: ILCMVERTXT Type: view BASIC

Version Text

I_LglCntntMVersionText is a Basic CDS View that provides data about "Version Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field LglCntntMVersionTypeCode.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ILCMVERTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label Version Text view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY LglCntntMVersionTypeCode
LglCntntMVersionTypeText dd07t ddtext
@AbapCatalog.sqlViewName: 'ILCMVERTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S

@VDM.viewType : #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@EndUserText.label: 'Version Text'
define view I_LglCntntMVersionText
  //  as select from dd07l

  //    inner join   dd07t on  dd07t.domname    = dd07l.domname

  //                       and dd07t.ddlanguage = $session.system_language

  //                       and dd07t.as4local   = dd07l.as4local

  //                       and dd07t.valpos     = dd07l.valpos

  as select from dd07t
{
      //dd07l

  key cast( dd07t.domvalue_l as lcm_version_text ) as LglCntntMVersionTypeCode,
      dd07t.ddtext                                 as LglCntntMVersionTypeText

}
where
      dd07t.domname    = 'LCM_VERSION_TEXT'
  and dd07t.as4local   = 'A'
  //  ***************************************************

  and dd07t.ddlanguage = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/