C_ChmlCmpstnMultiCompProdUoMVH

DDL: C_CHMLCMPSTNMULTICOMPPRODUOMVH Type: view_entity CONSUMPTION

Unit of Measure for Multi Component Compositon

C_ChmlCmpstnMultiCompProdUoMVH is a Consumption CDS View that provides data about "Unit of Measure for Multi Component Compositon" in SAP S/4HANA. It reads from 1 data source (I_UnitOfMeasure) and exposes 4 fields with key field UnitOfMeasure. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_UnitOfMeasure I_UnitOfMeasure from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_UnitOfMeasureText _Text $projection.UnitOfMeasure = _Text.UnitOfMeasure

Annotations (12)

NameValueLevelField
EndUserText.label Unit of Measure for Multi Component Compositon view
Search.searchable true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.representativeKey UnitOfMeasure view
Metadata.ignorePropagatedAnnotations true view
Consumption.ranked true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY UnitOfMeasure
UnitOfMeasureName
UnitOfMeasureDimension UnitOfMeasureDimension Dimension
SIUnitCnvrsnRateExponent SIUnitCnvrsnRateExponent Exponent

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 C_ChmlCmpstnMultiCompProdUoMVH.
-- 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 C_ChmlCmpstnMultiCompProdUoMVH AS
SELECT
  cast ( I_UnitOfMeasure.UnitOfMeasure as ehfnd_unit_code_meins preserving type ) AS UnitOfMeasure,
  UnitOfMeasureDimension,
  SIUnitCnvrsnRateExponent
FROM I_UnitOfMeasure
LEFT OUTER JOIN I_UnitOfMeasureText AS _Text ON UnitOfMeasure = _Text.UnitOfMeasure  -- association [0..*]
;