I_MeasuringPointStandardVH

DDL: I_MEASURINGPOINTSTANDARDVH Type: view_entity COMPOSITE Package: VDM_EAM_MEASURINGPOINT

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. It is exposed through 1 OData service (UI_MAINTENANCE_PLAN). It is used in 1 Fiori application: Manage Maintenance Plans. Part of development package VDM_EAM_MEASURINGPOINT.

Data Sources (1)

SourceAliasJoin Type
I_MeasuringPoint I_MeasuringPoint from

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #CHECK 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

OData Services (1)

ServiceBindingVersionContractRelease
UI_MAINTENANCE_PLAN UI_MAINTENANCE_PLAN V2 C1 NOT_RELEASED

Fiori Apps (1)

App IDApp NameTypeDescription
F5325 Manage Maintenance Plans Transactional An application to Manage Maintenance Plans, provides and comprehensive maintenance plan view including general data, scheduling information, assigned Maintenance Items, as well as review Maintenance calls, create new maintenance plan, edit existing maintenance plan.

Manage Maintenance Plans

Business Role: Maintenance Planner

With the Manage Maintenance Plans app, you as a maintenance planner can view, create, change, schedule, activate, and delete maintenance plans.

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
MsmtRdngTransferMode MsmtRdngTransferMode Transfer Mode
Equipment

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.

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(I_MeasuringPoint._FunctionalLocation.FunctionalLocation as tplnr_unconverted preserving type) AS FunctionalLocation,
  I_MeasuringPoint._FunctionalLocationLabel.FunctionalLocationLabelName AS FunctionalLocationLabelName,
  MsmtRdngTransferMode,
  I_MeasuringPoint._Equipment.Equipment AS Equipment
FROM I_MeasuringPoint
;