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 StorageLocation
KEY Plant I_StorageLocation Plant Valuation Area
StorageLocationName I_StorageLocation StorageLocationName Storage Loc. Name
PlantName
_Plant _Plant

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view C_MM_StorLocValueHelp.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: CMMSTORLOC_VH

CREATE VIEW C_MM_StorLocValueHelp AS
SELECT
  StorageLocation.StorageLocation AS StorageLocation,
  StorageLocation.Plant AS Plant,
  StorageLocation.StorageLocationName AS StorageLocationName,
  StorageLocation._Plant.PlantName AS PlantName
FROM I_StorageLocation AS StorageLocation
;