I_LCMDateTypeText

DDL: I_LCMDATETYPETEXT SQL: ILCMDATETYPET Type: view BASIC Package: VDM_LCM_COMMON

Text View for LCM Date Types

I_LCMDateTypeText is a Basic CDS View that provides data about "Text View for LCM Date Types" in SAP S/4HANA. It reads from 2 data sources (I_LglCntntMCstmDateTypeText, I_LglCntntMSAPDateTypeText) and exposes 3 fields with key fields LglCntntMDateType, Language, Language. Part of development package VDM_LCM_COMMON.

Data Sources (2)

SourceAliasJoin Type
I_LglCntntMCstmDateTypeText I_LglCntntMCstmDateTypeText union
I_LglCntntMSAPDateTypeText I_LglCntntMSAPDateTypeText from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ILCMDATETYPET view
AbapCatalog.compiler.compareFilter 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
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey LglCntntMDateType view
Search.searchable true view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label Text View for LCM Date Types view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY LglCntntMDateType LglCntntMDateType
KEY Language Language
KEY Language Language
@AbapCatalog.sqlViewName: 'ILCMDATETYPET'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

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

@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'LglCntntMDateType'

@Search.searchable: true

@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@EndUserText.label: 'Text View for LCM Date Types'
define view I_LCMDateTypeText 
    as select from I_LglCntntMSAPDateTypeText {

  key LglCntntMDateType,
      @Semantics.language: true
  key Language,

      @Semantics.text: true            -- identifies the text field
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
     LglCntntMDateTypeName
      
}
union
select from I_LglCntntMCstmDateTypeText {

  key LglCntntMDateType,
      @Semantics.language: true
  key Language,

      @Semantics.text: true            -- identifies the text field
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
     LglCntntMDateTypeName
      
}