C_SubcontrgStorageLocVH

DDL: C_SUBCONTRGSTORAGELOCVH SQL: CSCSTORLOC_VH Type: view CONSUMPTION

Storage Location Value Help

C_SubcontrgStorageLocVH 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 4 fields with key fields StorageLocation, Plant.

Data Sources (1)

SourceAliasJoin Type
I_StorageLocation StorageLocation from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CSCSTORLOC_VH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #NONE view
Search.searchable true view
ObjectModel.semanticKey StorageLocation view
ObjectModel.representativeKey StorageLocation view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Storage Location Value Help view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #NOT_REQUIRED view

Fields (4)

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

@AccessControl.personalData.blocking: #NOT_REQUIRED

//@OData.publish: true


define view C_SubcontrgStorageLocVH
  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 }
  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

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