C_MM_StorLocValueHelp

DDL: C_MM_STORLOCVALUEHELP SQL: CMMSTORLOC_VH Type: view CONSUMPTION

Storage Location Value Help

C_MM_StorLocValueHelp is a Consumption CDS View that provides data about "Storage Location Value Help" in SAP S/4HANA. It reads from 1 data source (I_StorageLocation) and exposes 5 fields with key fields StorageLocation, Plant.

Data Sources (1)

SourceAliasJoin Type
I_StorageLocation StorageLocation from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CMMSTORLOC_VH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.semanticKey StorageLocation view
ObjectModel.representativeKey StorageLocation view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Storage Location Value Help view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY StorageLocation I_StorageLocation StorageLocation
KEY Plant I_StorageLocation Plant
StorageLocationName I_StorageLocation StorageLocationName
PlantName
_Plant _Plant
@AbapCatalog.sqlViewName: 'CMMSTORLOC_VH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@ObjectModel.semanticKey: 'StorageLocation'
@ObjectModel.representativeKey: 'StorageLocation'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'Storage Location Value Help'
@ClientHandling.algorithm: #SESSION_VARIABLE

define view C_MM_StorLocValueHelp
  as select from I_StorageLocation as StorageLocation
{

      @ObjectModel.text.element:  [ 'StorageLocationName' ]
      @Search: { defaultSearchElement: true, ranking: #HIGH }
  key StorageLocation.StorageLocation     as StorageLocation,

      @ObjectModel.text.element:  [ 'PlantName' ]
      @Search: { defaultSearchElement: true, ranking: #MEDIUM }
      @ObjectModel.foreignKey.association: '_Plant'
  key StorageLocation.Plant               as Plant,

      @Semantics.text: true
      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
      StorageLocation.StorageLocationName as StorageLocationName,

      @Semantics.text: true
      @Search: { defaultSearchElement: true, ranking: #MEDIUM, fuzzinessThreshold: 0.7 }
      StorageLocation._Plant.PlantName    as PlantName,

      _Plant

} 
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PLANT",
"I_STORAGELOCATION"
],
"ASSOCIATED":
[
"I_PLANT"
],
"BASE":
[
"I_STORAGELOCATION"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/