F2_Mmim_Storloc_Vh

DDL: F2_MMIM_STORLOC_VH SQL: F2MMIMSTORLOCVH Type: view

Help-View for storage locations

F2_Mmim_Storloc_Vh is a CDS View that provides data about "Help-View for storage locations" in SAP S/4HANA. It reads from 1 data source (F_Mmim_Matdoc) and exposes 3 fields with key fields Plant, StorageLocation. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
F_Mmim_Matdoc F_Mmim_Matdoc from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_StorageLocation _StorageLocation $projection.Plant = _StorageLocation.Plant and $projection.StorageLocation = _StorageLocation.StorageLocation

Annotations (9)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName F2MMIMSTORLOCVH view
EndUserText.label Help-View for storage locations view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Plant Plant Valuation Area
KEY StorageLocation StorageLocation StorageLocation
_StorageLocation _StorageLocation

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 F2_Mmim_Storloc_Vh.
-- 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: F2MMIMSTORLOCVH

CREATE VIEW F2_Mmim_Storloc_Vh AS
SELECT
  Plant,
  StorageLocation
FROM F_Mmim_Matdoc
LEFT OUTER JOIN I_StorageLocation AS _StorageLocation ON Plant = _StorageLocation.Plant AND StorageLocation = _StorageLocation.StorageLocation  -- association [1..1]
;