I_KZ_MaterialGroupClassfctn

DDL: I_KZ_MATERIALGROUPCLASSFCTN SQL: IKZMATGROUPCL Type: view BASIC

Material group

I_KZ_MaterialGroupClassfctn is a Basic CDS View that provides data about "Material group" in SAP S/4HANA. It reads from 1 data source (fikzc_matgroup) and exposes 3 fields with key field MaterialGroup.

Data Sources (1)

SourceAliasJoin Type
fikzc_matgroup fikzc_matgroup from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IKZMATGROUPCL view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
EndUserText.label Material group view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MaterialGroup matkl Product Sold Group
KZ_MaterialSubGroup subgroup Subgroup
MaterialGroupClassification activity VAT Activity

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 I_KZ_MaterialGroupClassfctn.
-- 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: IKZMATGROUPCL

CREATE VIEW I_KZ_MaterialGroupClassfctn AS
SELECT
  matkl AS MaterialGroup,
  subgroup AS KZ_MaterialSubGroup,
  activity AS MaterialGroupClassification
FROM fikzc_matgroup
;