C_MM_StorLocValueHelp
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)
| Source | Alias | Join Type |
|---|---|---|
| I_StorageLocation | StorageLocation | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA