I_UnitOfMeasureStdVH

DDL: I_UNITOFMEASURESTDVH SQL: IUNITOFMEASUREVH Type: view COMPOSITE

Unit of Measure

I_UnitOfMeasureStdVH (Composite)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_UnitOfMeasureStdVH is a Composite CDS View that provides data about "Unit of Measure" in SAP S/4HANA. It reads from 1 data source (I_UnitOfMeasure) and exposes 5 fields with key field UnitOfMeasure.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentBC-SRV-ASF-UOM
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_UnitOfMeasure I_UnitOfMeasure from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IUNITOFMEASUREVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Unit of Measure view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey UnitOfMeasure view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY UnitOfMeasure UnitOfMeasure Unit Protected Qty
UnitOfMeasure_E External Unit of Measurement in Commercial Format (3-Char.)
UnitOfMeasureLongName Unit of Measurement Text (Maximum 30 Characters)
UnitOfMeasureDimension UnitOfMeasureDimension Dimension
UnitOfMeasureDimensionName Dimension 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 I_UnitOfMeasureStdVH.
-- 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: IUNITOFMEASUREVH

CREATE VIEW I_UnitOfMeasureStdVH AS
SELECT
  UnitOfMeasure,
  _Text[ 1: Language = $session.system_language ].UnitOfMeasure_E AS UnitOfMeasure_E,
  _Text[ 1: Language = $session.system_language ].UnitOfMeasureLongName AS UnitOfMeasureLongName,
  UnitOfMeasureDimension,
  _DimensionText[ 1: Language = $session.system_language ].UnitOfMeasureDimensionName AS UnitOfMeasureDimensionName
FROM I_UnitOfMeasure
;