Deprecated
This CDS view is deprecated in S/4HANA. View all deprecated CDS views →

I_UOMGroup

DDL: I_UOMGROUP SQL: IMMUOMG Type: view BASIC

UOM group VDM view for value help

I_UOMGroup is a Basic CDS View that provides data about "UOM group VDM view for value help" in SAP S/4HANA. It reads from 1 data source (twmeg) and exposes 3 fields with key fields ProductUnitGroup, AlternativeUnit. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
twmeg twmeg from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_UnitOfMeasureText _UnitOfMeasureText $projection.AlternativeUnit = _UnitOfMeasureText.UnitOfMeasure

Annotations (11)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName IMMUOMG view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
EndUserText.label UOM group VDM view for value help view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.status #DEPRECATED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ProductUnitGroup megru UoM Group
KEY AlternativeUnit meins Valuation Unit
_UnitOfMeasureText _UnitOfMeasureText

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_UOMGroup.
-- 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: IMMUOMG

CREATE VIEW I_UOMGroup AS
SELECT
  megru AS ProductUnitGroup,
  meins AS AlternativeUnit
FROM twmeg
LEFT OUTER JOIN I_UnitOfMeasureText AS _UnitOfMeasureText ON AlternativeUnit = _UnitOfMeasureText.UnitOfMeasure  -- association [0..*]
;