I_ACMMaterialMstrData

DDL: I_ACMMATERIALMSTRDATA SQL: IACMMATMASDATA Type: view BASIC

Material Master Data

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

Data Sources (1)

SourceAliasJoin Type
mara mara from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IACMMATMASDATA view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AbapCatalog.compiler.compareFilter true view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #D view
EndUserText.label Material Master Data view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.supportedCapabilities #CDS_MODELING_DATA_SOURCE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Material matnr Vehicle Model
MaterialBaseUnit meins Valuation Unit
Commodity commodity Commodity Code

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_ACMMaterialMstrData.
-- 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: IACMMATMASDATA

CREATE VIEW I_ACMMaterialMstrData AS
SELECT
  matnr AS Material,
  meins AS MaterialBaseUnit,
  Commodity
FROM mara
;