C_HCMTimeShtUnitOfMeasureVH

DDL: C_HCMTIMESHTUNITOFMEASUREVH Type: view_entity COMPOSITE

Timesheet Unit of Measure

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

Data Sources (1)

SourceAliasJoin Type
I_UnitOfMeasure I_UnitOfMeasure from

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Timesheet 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
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY UnitOfMeasure UnitOfMeasure Unit Protected Qty
UnitOfMeasure_E
UnitOfMeasureName
UnitOfMeasureDimension UnitOfMeasureDimension Dimension
SIUnitCnvrsnRateNumerator SIUnitCnvrsnRateNumerator Sort pos.
SIUnitCnvrsnRateDenominator SIUnitCnvrsnRateDenominator Denominator

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_HCMTimeShtUnitOfMeasureVH.
-- 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_HCMTimeShtUnitOfMeasureVH AS
SELECT
  UnitOfMeasure,
  _Text[ 1: Language = $session.system_language ].UnitOfMeasure_E AS UnitOfMeasure_E,
  _Text[ 1: Language = $session.system_language ].UnitOfMeasureName AS UnitOfMeasureName,
  UnitOfMeasureDimension,
  SIUnitCnvrsnRateNumerator,
  SIUnitCnvrsnRateDenominator
FROM I_UnitOfMeasure
;