I_LCMEntityTypeText

DDL: I_LCMENTITYTYPETEXT SQL: ILCMENTITYTYPET Type: view BASIC Package: VDM_LCM_COMMON

Text view for LCM Entity Type

I_LCMEntityTypeText is a Basic CDS View that provides data about "Text view for LCM Entity Type" in SAP S/4HANA. It reads from 1 data source (lcm_centtypet) and exposes 2 fields with key fields LglCntntMEntityType, Language. Part of development package VDM_LCM_COMMON.

Data Sources (1)

SourceAliasJoin Type
lcm_centtypet lcm_centtypet from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ILCMENTITYTYPET view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Text view for LCM Entity Type 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 LglCntntMEntityType view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY LglCntntMEntityType lglcntntmentitytype
KEY Language language
@AbapCatalog.sqlViewName: 'ILCMENTITYTYPET'
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Text view for LCM Entity Type'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S

@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'LglCntntMEntityType'
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API

@Search.searchable: true
define view I_LCMEntityTypeText
  as select from lcm_centtypet
{

  key lglcntntmentitytype           as LglCntntMEntityType,

      @Semantics.language: true
  key language                      as Language,

      @Semantics.text: true            -- identifies the text field
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      @Search.fuzzinessThreshold: 0.8
      @EndUserText.label: 'Entity Type Text'
      @EndUserText.quickInfo: 'Entity Type Text'
      lglcntntmentitytypename       as LglCntntMEntityTypeName

}