F_Mmim_Matgrp_Vh

DDL: F_MMIM_MATGRP_VH SQL: FMMIMMATGRPVH Type: view

Help-View Material by material group

F_Mmim_Matgrp_Vh is a CDS View that provides data about "Help-View Material by material group" in SAP S/4HANA. It reads from 1 data source (F_Mmim_Mat_Vh) and exposes 7 fields with key fields Material, TranslationLanguage, Language.

Data Sources (1)

SourceAliasJoin Type
F_Mmim_Mat_Vh F_Mmim_Mat_Vh from

Annotations (9)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName FMMIMMATGRPVH view
EndUserText.label Help-View Material by material group 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 (7)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY TranslationLanguage
KEY Language
MaterialName
MaterialGroup _Material MaterialGroup Product Group
MaterialGroupName
AuthorizationGroup _Material AuthorizationGroup AuthorizGroup

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_Matgrp_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: FMMIMMATGRPVH

CREATE VIEW F_Mmim_Matgrp_Vh AS
SELECT
  Material,
  _Material._MaterialGroup._Text.Language AS TranslationLanguage,
  _Material._Text.Language AS Language,
  _Material._Text.MaterialName AS MaterialName,
  _Material.MaterialGroup AS MaterialGroup,
  _Material._MaterialGroup._Text.MaterialGroupName AS MaterialGroupName,
  _Material.AuthorizationGroup AS AuthorizationGroup
FROM F_Mmim_Mat_Vh
;