F_Mmim_Mattyp_Vh

DDL: F_MMIM_MATTYP_VH SQL: FMMIMMATTYPVH Type: view

Help-View Material by material Type

F_Mmim_Mattyp_Vh is a CDS View that provides data about "Help-View Material by material Type" 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 FMMIMMATTYPVH view
EndUserText.label Help-View Material by material Type 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
MaterialType _Material MaterialType Material Type
MaterialTypeName
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_Mattyp_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: FMMIMMATTYPVH

CREATE VIEW F_Mmim_Mattyp_Vh AS
SELECT
  Material,
  _Material._MaterialType._Text.Language AS TranslationLanguage,
  _Material._Text.Language AS Language,
  _Material._Text.MaterialName AS MaterialName,
  _Material.MaterialType AS MaterialType,
  _Material._MaterialType._Text.MaterialTypeName AS MaterialTypeName,
  _Material.AuthorizationGroup AS AuthorizationGroup
FROM F_Mmim_Mat_Vh
;