A_MeasuringPoint

DDL: A_MEASURINGPOINT Type: view_entity COMPOSITE

Measuring Points

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

Data Sources (1)

SourceAliasJoin Type
R_MeasuringPointTP R_MeasuringPointTP projection

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Measuring Points view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

Fields (33)

KeyFieldSource TableSource FieldDescription
KEY MeasuringPoint MeasuringPoint
MeasuringPointDescription MeasuringPointDescription
MeasuringPointObjectIdentifier MeasuringPointObjectIdentifier
TechnicalObjectType TechnicalObjectType Text object
MeasuringPointPositionNumber MeasuringPointPositionNumber
MeasuringPointCategory MeasuringPointCategory
CreationDate CreationDate Time Stamp
LastChangeDate LastChangeDate Time Stamp
AuthorizationGroup AuthorizationGroup AuthorizGroup
MeasuringPointIsCounter MeasuringPointIsCounter
MsrgPtInternalCharacteristic MsrgPtInternalCharacteristic
CharcValueUnit CharcValueUnit Internal UoM
MeasuringPointDecimalPlaces MeasuringPointDecimalPlaces
MeasuringPointExponent MeasuringPointExponent
MeasuringPointCodeGroup MeasuringPointCodeGroup
ValuationCodeIsSufficient ValuationCodeIsSufficient
Assembly Assembly Pegged Reqmt
MeasuringPointIsInactive MeasuringPointIsInactive
MeasuringPointShortText MeasuringPointShortText
MeasurementRangeUnit MeasurementRangeUnit
MeasuringPointSIUnitOfMeasure MeasuringPointSIUnitOfMeasure
MsmtRdngSourceMeasuringPoint MsmtRdngSourceMeasuringPoint
MeasuringPointTargetValue MeasuringPointTargetValue
MeasuringPointMaximumThreshold MeasuringPointMaximumThreshold
MeasuringPointMinimumThreshold MeasuringPointMinimumThreshold
MeasuringPointAnnualEstimate MeasuringPointAnnualEstimate
CounterOverflowRdngThreshold CounterOverflowRdngThreshold
MsrgPtIsCountingBackwards MsrgPtIsCountingBackwards
MeasurementTransferIsSupported MeasurementTransferIsSupported
FunctionalLocation FunctionalLocation Object ID
FunctionalLocationLabelName FunctionalLocationLabelName Functional Loc.
Equipment Equipment Equipment check
MsmtRdngTransferMode MsmtRdngTransferMode

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 A_MeasuringPoint.
-- 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 A_MeasuringPoint AS
SELECT
  MeasuringPoint,
  MeasuringPointDescription,
  MeasuringPointObjectIdentifier,
  TechnicalObjectType,
  MeasuringPointPositionNumber,
  MeasuringPointCategory,
  CreationDate,
  LastChangeDate,
  AuthorizationGroup,
  MeasuringPointIsCounter,
  MsrgPtInternalCharacteristic,
  CharcValueUnit,
  MeasuringPointDecimalPlaces,
  MeasuringPointExponent,
  MeasuringPointCodeGroup,
  ValuationCodeIsSufficient,
  Assembly,
  MeasuringPointIsInactive,
  MeasuringPointShortText,
  MeasurementRangeUnit,
  MeasuringPointSIUnitOfMeasure,
  MsmtRdngSourceMeasuringPoint,
  MeasuringPointTargetValue,
  MeasuringPointMaximumThreshold,
  MeasuringPointMinimumThreshold,
  MeasuringPointAnnualEstimate,
  CounterOverflowRdngThreshold,
  MsrgPtIsCountingBackwards,
  MeasurementTransferIsSupported,
  FunctionalLocation,
  FunctionalLocationLabelName,
  Equipment,
  MsmtRdngTransferMode
FROM R_MeasuringPointTP
;