I_LglCntntMProfileText

DDL: I_LGLCNTNTMPROFILETEXT SQL: ILCMPROFILET Type: view BASIC

Text view for LCM Profile

I_LglCntntMProfileText is a Basic CDS View that provides data about "Text view for LCM Profile" in SAP S/4HANA. It reads from 1 data source (lcm_cprofilet) and exposes 2 fields with key fields LglCntntMProfile, Language.

Data Sources (1)

SourceAliasJoin Type
lcm_cprofilet lcm_cprofilet from

Annotations (13)

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

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY LglCntntMProfile lglcntntmprofile
KEY Language language
@AbapCatalog.sqlViewName: 'ILCMPROFILET'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Text view for LCM Profile'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S

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

@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@Search.searchable: true
define view I_LglCntntMProfileText
  as select from lcm_cprofilet
{

  key lglcntntmprofile     as LglCntntMProfile,

      @Semantics.language: true
  key language             as Language,

      @Semantics.text: true            -- identifies the text field
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @Consumption.filter.hidden: true -- hide redundant text filter
      @EndUserText.label: 'Profile Name'
      @EndUserText.quickInfo: 'Profile Name'
      lglcntntmprofilename as LglCntntMProfileName

}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"LCM_CPROFILET"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/