I_ACMMatlUnitCnvrsn

DDL: I_ACMMATLUNITCNVRSN Type: view_entity BASIC

Material Unit Of Measure

I_ACMMatlUnitCnvrsn is a Basic CDS View that provides data about "Material Unit Of Measure" in SAP S/4HANA. It reads from 1 data source (marm) and exposes 4 fields with key fields Material, AlternativeUnit.

Data Sources (1)

SourceAliasJoin Type
marm marm from

Annotations (6)

NameValueLevelField
EndUserText.label Material Unit Of Measure view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Material marm matnr Vehicle Model
KEY AlternativeUnit marm meinh Unit of Measure
QuantityNumerator marm umrez Numerator
QuantityDenominator marm umren Denominator

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_ACMMatlUnitCnvrsn.
-- 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.

CREATE VIEW I_ACMMatlUnitCnvrsn AS
SELECT
  marm.matnr AS Material,
  marm.meinh AS AlternativeUnit,
  marm.umrez AS QuantityNumerator,
  marm.umren AS QuantityDenominator
FROM marm
;