C_SrvcDocItemUnitOfMeasureVH

DDL: C_SRVCDOCITEMUNITOFMEASUREVH SQL: CSRVCDOCUNITVH Type: view CONSUMPTION

Value Help for Units

C_SrvcDocItemUnitOfMeasureVH is a Consumption CDS View that provides data about "Value Help for Units" in SAP S/4HANA. It reads from 1 data source (I_ProductUnitsOfMeasure) and exposes 5 fields with key fields Product, AlternativeUnit.

Data Sources (1)

SourceAliasJoin Type
I_ProductUnitsOfMeasure I_ProductUnitsOfMeasure from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CSRVCDOCUNITVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Value Help for Units view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view
Consumption.ranked true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Product Product Product Sold
KEY AlternativeUnit AlternativeUnit Base UoM
UnitOfMeasureName
_Product _Product
_AlternativeUnit _AlternativeUnit

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_SrvcDocItemUnitOfMeasureVH.
-- 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: CSRVCDOCUNITVH

CREATE VIEW C_SrvcDocItemUnitOfMeasureVH AS
SELECT
  Product,
  AlternativeUnit,
  _AlternativeUnitText[1: Language=$session.system_language].UnitOfMeasureName AS UnitOfMeasureName
FROM I_ProductUnitsOfMeasure
;