C_ProductUnitOfMeasureVH

DDL: C_PRODUCTUNITOFMEASUREVH Type: view CONSUMPTION Package: VDM_MD_PRODUCT

Unit Of Measure

C_ProductUnitOfMeasureVH is a Consumption CDS View that provides data about "Unit Of Measure" in SAP S/4HANA. It reads from 1 data source (I_UnitOfMeasure) and exposes 7 fields with key field UnitOfMeasure. It has 1 association to related views. It is exposed through 9 OData services (ASQL_F1990, ASQL_F2358, ASQL_F2421, ...). Part of development package VDM_MD_PRODUCT.

Data Sources (1)

SourceAliasJoin Type
I_UnitOfMeasure I_UnitOfMeasure from

Associations (1)

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

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName CPRDUOMVH view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Unit Of Measure view
Search.searchable true view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey UnitOfMeasure view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #VALUE_HELP view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
Consumption.ranked true view

OData Services (9)

ServiceBindingVersionContractRelease
ASQL_F1990 ASQL_F1990 C2 NOT_RELEASED
ASQL_F2358 ASQL_F2358 C2 NOT_RELEASED
ASQL_F2421 ASQL_F2421 C2 NOT_RELEASED
ASQL_F2593 ASQL_F2593 C2 NOT_RELEASED
ASQL_F3016 ASQL_F3016 C2 NOT_RELEASED
ASQL_F3366 ASQL_F3366 C2 NOT_RELEASED
ASQL_F3417 ASQL_F3417 C2 NOT_RELEASED
ASQL_F5079 ASQL_F5079 C2 NOT_RELEASED
ASQL_F8464 ASQL_F8464 C2 NOT_RELEASED

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY UnitOfMeasure I_UnitOfMeasure UnitOfMeasure Unit Protected Qty
UnitOfMeasureDimension I_UnitOfMeasure UnitOfMeasureDimension Dimension
UnitOfMeasureISOCode I_UnitOfMeasure UnitOfMeasureISOCode ISO Code
UnitOfMeasure_E I_UnitOfMeasure UnitOfMeasure_E
UnitOfMeasureIsCommercial I_UnitOfMeasure UnitOfMeasureIsCommercial Commercial Unit
UnitOfMeasureLongName
_Text _Text

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_ProductUnitOfMeasureVH.
-- 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_ProductUnitOfMeasureVH AS
SELECT
  I_UnitOfMeasure.UnitOfMeasure AS UnitOfMeasure,
  I_UnitOfMeasure.UnitOfMeasureDimension AS UnitOfMeasureDimension,
  I_UnitOfMeasure.UnitOfMeasureISOCode AS UnitOfMeasureISOCode,
  I_UnitOfMeasure.UnitOfMeasure_E AS UnitOfMeasure_E,
  I_UnitOfMeasure.UnitOfMeasureIsCommercial AS UnitOfMeasureIsCommercial,
  _Text[1: Language = $session.system_language ].UnitOfMeasureLongName AS UnitOfMeasureLongName
FROM I_UnitOfMeasure
LEFT OUTER JOIN I_UnitOfMeasureText AS _Text ON UnitOfMeasure = _Text.UnitOfMeasure  -- association [0..*]
;