C_LglTransMainOrgTypeCrteVH

DDL: C_LGLTRANSMAINORGTYPECRTEVH SQL: CLTMAINORGTCVH Type: view CONSUMPTION Package: ODATA_LCM_LT

Main Organization Type Value Help

C_LglTransMainOrgTypeCrteVH is a Consumption CDS View that provides data about "Main Organization Type Value Help" in SAP S/4HANA. It reads from 1 data source (I_LglCntntMMainOrgType) and exposes 3 fields with key field LglCntntMMainOrgType. Part of development package ODATA_LCM_LT.

Data Sources (1)

SourceAliasJoin Type
I_LglCntntMMainOrgType I_LglCntntMMainOrgType from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CLTMAINORGTCVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey LglCntntMMainOrgType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
EndUserText.label Main Organization Type Value Help view
Consumption.ranked true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY LglCntntMMainOrgType LglCntntMMainOrgType Main Organization Type
LglCntntMMainOrgTypeName Main Organization Type Description
_Text _Text
@AbapCatalog.sqlViewName: 'CLTMAINORGTCVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #CONSUMPTION
@ObjectModel: { semanticKey: [ 'LglCntntMMainOrgType' ],
                representativeKey: 'LglCntntMMainOrgType',
                usageType.serviceQuality: #A,
                usageType.sizeCategory: #S,
                usageType.dataClass: #MASTER,
                dataCategory: #VALUE_HELP }
@Search.searchable: true
@EndUserText.label: 'Main Organization Type Value Help'
@Consumption.ranked: true

define view C_LglTransMainOrgTypeCrteVH
  as select from I_LglCntntMMainOrgType
{

      @ObjectModel.text.element:  [ 'LglCntntMMainOrgTypeName' ]
      @EndUserText.label: 'Main Organization Type'
//      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }

  key LglCntntMMainOrgType,

      @Semantics.text: true
      @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.7 }
      @EndUserText.label: 'Main Organization Type Description'
      _Text[1: Language = $session.system_language].LglCntntMMainOrgTypeName,

      _Text

}