I_MeasuringPointStandardVH

DDL: I_MEASURINGPOINTSTANDARDVH SQL: IMEASPOINT__VH Type: view COMPOSITE

Measuring Point

I_MeasuringPointStandardVH is a Composite CDS View that provides data about "Measuring Point" in SAP S/4HANA. It reads from 1 data source (I_MeasuringPoint) and exposes 30 fields with key field MeasuringPoint.

Data Sources (1)

SourceAliasJoin Type
I_MeasuringPoint I_MeasuringPoint from

Annotations (15)

NameValueLevelField
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName IMEASPOINT__VH view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
EndUserText.label Measuring Point view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey MeasuringPoint view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #COMPOSITE view
Consumption.ranked true view

Fields (30)

KeyFieldSource TableSource FieldDescription
KEY MeasuringPoint MeasuringPoint Measuring Point
MeasuringPointDescription MeasuringPointDescription Description
MeasuringPointPositionNumber MeasuringPointPositionNumber Measurement Position
MeasuringPointCategory MeasuringPointCategory Category
CreationDate CreationDate Created On
LastChangeDate LastChangeDate Changed On
AuthorizationGroup AuthorizationGroup Authorization Group
MeasuringPointIsCounter MeasuringPointIsCounter Measuring Point Is Counter
MsrgPtInternalCharacteristic Internal char.
CharcValueUnit
MeasuringPointDecimalPlaces MeasuringPointDecimalPlaces Decimal places
MeasuringPointExponent MeasuringPointExponent Floating Point Exponent
MeasuringPointCodeGroup MeasuringPointCodeGroup Measuring Point Code Group
ValuationCodeIsSufficient ValuationCodeIsSufficient Valuation Code Is Sufficient
Assembly Assembly Pegged Reqmt
MeasuringPointIsInactive MeasuringPointIsInactive Measuring Point Is Inactive
MeasuringPointShortText MeasuringPointShortText Measuring Point Short Text
MeasurementRangeUnit MeasurementRangeUnit Unit
MsmtRdngSourceMeasuringPoint MsmtRdngSourceMeasuringPoint Reading Transfer From
MeasuringPointTargetValue MeasuringPointTargetValue Measuring Point Target Value
MeasuringPointMaximumThreshold MeasuringPointMaximumThreshold Measuring Point Maximum Threshold
MeasuringPointMinimumThreshold MeasuringPointMinimumThreshold Measuring Point Minimum Threshold
MeasuringPointAnnualEstimate MeasuringPointAnnualEstimate Measuring Point Annual Estimate
CounterOverflowRdngThreshold CounterOverflowRdngThreshold Counter Overflow Reading Threshold
MsrgPtIsCountingBackwards MsrgPtIsCountingBackwards Count Is Backwards
MeasurementTransferIsSupported MeasurementTransferIsSupported Supported
FunctionalLocation
FunctionalLocationLabelName _FunctionalLocationLabel FunctionalLocationLabelName Functional Loc.
MsmtRdngTransferMode MsmtRdngTransferMode Transfer Mode
Equipment _Equipment Equipment Equipment check

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_MeasuringPointStandardVH.
-- 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: IMEASPOINT__VH

CREATE VIEW I_MeasuringPointStandardVH AS
SELECT
  MeasuringPoint,
  MeasuringPointDescription,
  MeasuringPointPositionNumber,
  MeasuringPointCategory,
  CreationDate,
  LastChangeDate,
  AuthorizationGroup,
  MeasuringPointIsCounter,
  cast( MsrgPtInternalCharacteristic as atinn_no_conv preserving type ) AS MsrgPtInternalCharacteristic,
  _Characteristic( P_KeyDate:$session.system_date).CharcValueUnit AS CharcValueUnit,
  MeasuringPointDecimalPlaces,
  MeasuringPointExponent,
  MeasuringPointCodeGroup,
  ValuationCodeIsSufficient,
  Assembly,
  MeasuringPointIsInactive,
  MeasuringPointShortText,
  MeasurementRangeUnit,
  MsmtRdngSourceMeasuringPoint,
  MeasuringPointTargetValue,
  MeasuringPointMaximumThreshold,
  MeasuringPointMinimumThreshold,
  MeasuringPointAnnualEstimate,
  CounterOverflowRdngThreshold,
  MsrgPtIsCountingBackwards,
  MeasurementTransferIsSupported,
  cast(_FunctionalLocation.FunctionalLocation as tplnr_unconverted preserving type) AS FunctionalLocation,
  _FunctionalLocationLabel.FunctionalLocationLabelName AS FunctionalLocationLabelName,
  MsmtRdngTransferMode,
  _Equipment.Equipment AS Equipment
FROM I_MeasuringPoint
;