F_Mmim_Matprodhy_Vh

DDL: F_MMIM_MATPRODHY_VH SQL: FMMIMMATPRODHYVH Type: view

Help-View Material by product hierarchy

F_Mmim_Matprodhy_Vh is a CDS View that provides data about "Help-View Material by product hierarchy" in SAP S/4HANA. It reads from 1 data source (F2_Mmim_Matprodhy_Vh) and exposes 9 fields with key fields Material, Language, SalesOrganization, DistributionChannel, ProductHierarchy.

Data Sources (1)

SourceAliasJoin Type
F2_Mmim_Matprodhy_Vh F2_Mmim_Matprodhy_Vh from

Annotations (9)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName FMMIMMATPRODHYVH view
EndUserText.label Help-View Material by product hierarchy 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 (9)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY Language
KEY SalesOrganization SalesOrganization Sales Organization
KEY DistributionChannel DistributionChannel RefDistCh-Cust/Mat.
KEY ProductHierarchy ProductHierarchy Prod.hierarchy
KEY TranslationLanguage
MaterialName
ProductHierarchyName
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_Matprodhy_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: FMMIMMATPRODHYVH

CREATE VIEW F_Mmim_Matprodhy_Vh AS
SELECT
  Material,
  _Material._Text.Language AS Language,
  SalesOrganization,
  DistributionChannel,
  ProductHierarchy,
  _ProductHierarchy._Text.Language AS TranslationLanguage,
  _Material._Text.MaterialName AS MaterialName,
  _ProductHierarchy._Text.ProductHierarchyText AS ProductHierarchyName,
  _Material.AuthorizationGroup AS AuthorizationGroup
FROM F2_Mmim_Matprodhy_Vh
;