I_ACMMaterialUnitCnvrsnFactor

DDL: I_ACMMATERIALUNITCNVRSNFACTOR SQL: IACMMATUOM Type: view BASIC

Basic View for Material Unit Of Measure

I_ACMMaterialUnitCnvrsnFactor is a Basic CDS View that provides data about "Basic View for 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 (10)

NameValueLevelField
AbapCatalog.sqlViewName IACMMATUOM view
AbapCatalog.preserveKey true view
EndUserText.label Basic View for Material Unit Of Measure view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE 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_ACMMaterialUnitCnvrsnFactor.
-- 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: IACMMATUOM

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