F_Mmim_Ir_Storloc_Vh

DDL: F_MMIM_IR_STORLOC_VH SQL: FMMIMIRSTORLOCVH Type: view

Help-View for issuing and receiving storage locations

F_Mmim_Ir_Storloc_Vh is a CDS View that provides data about "Help-View for issuing and receiving storage locations" in SAP S/4HANA. It reads from 1 data source (F2_Mmim_Ir_Storloc_Vh) and exposes 5 fields with key fields IssuingOrReceivingPlant, IssuingOrReceivingStorageLoc.

Data Sources (1)

SourceAliasJoin Type
F2_Mmim_Ir_Storloc_Vh F2_Mmim_Ir_Storloc_Vh from

Annotations (12)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName FMMIMIRSTORLOCVH view
EndUserText.label Help-View for issuing and receiving storage locations view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
Consumption.ranked true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY IssuingOrReceivingPlant IssuingOrReceivingPlant Transfer Plant
KEY IssuingOrReceivingStorageLoc IssuingOrReceivingStorageLoc Storage Location
PlantName
StorageLocationName _StorageLocation StorageLocationName Storage Loc. Name
IsStorLocAuthznCheckActive _StorageLocation IsStorLocAuthznCheckActive

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 F_Mmim_Ir_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: FMMIMIRSTORLOCVH

CREATE VIEW F_Mmim_Ir_Storloc_Vh AS
SELECT
  IssuingOrReceivingPlant,
  IssuingOrReceivingStorageLoc,
  _StorageLocation._Plant.PlantName AS PlantName,
  _StorageLocation.StorageLocationName AS StorageLocationName,
  _StorageLocation.IsStorLocAuthznCheckActive AS IsStorLocAuthznCheckActive
FROM F2_Mmim_Ir_Storloc_Vh
;