I_LCMStatusText

DDL: I_LCMSTATUSTEXT Type: view BASIC

Basic View for LCM Customizing Status Text

I_LCMStatusText is a Basic CDS View that provides data about "Basic View for LCM Customizing Status Text" in SAP S/4HANA. It reads from 1 data source (lcm_cstatust) and exposes 3 fields with key fields LglCntntMStatus, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
lcm_cstatust lcm_cstatust from

Associations (1)

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

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ILCMSTATUSTEXT view
AbapCatalog.compiler.compareFilter true view
Search.searchable 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
ObjectModel.representativeKey LglCntntMStatus view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label Basic View for LCM Customizing Status Text view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY LglCntntMStatus lglcntntmstatus
KEY Language language
_Language _Language
@AbapCatalog: { sqlViewName             : 'ILCMSTATUSTEXT',
                compiler.compareFilter  : true }
@Search.searchable: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: { usageType.dataClass     : #MASTER,
                usageType.serviceQuality: #A,
                usageType.sizeCategory  : #S,
                representativeKey       : 'LglCntntMStatus',
                dataCategory            : #TEXT }

@VDM:{ viewType                 : #BASIC,
       lifecycle.contract.type  : #SAP_INTERNAL_API }

@EndUserText.label: 'Basic View for LCM Customizing Status Text'

define view I_LCMStatusText
  as select from lcm_cstatust
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{

  key lglcntntmstatus     as LglCntntMStatus,
      @Semantics.language: true
  key language            as Language,

      @Semantics.text: true            -- identifies the text field
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      lglcntntmstatusname as LglCntntMStatusName,

      _Language

}