I_MeasuringPointTP_2

DDL: I_MEASURINGPOINTTP_2 Type: view_entity TRANSACTIONAL

Measuring Point

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

Data Sources (1)

SourceAliasJoin Type
R_MeasuringPointTP R_MeasuringPointTP projection

Annotations (10)

NameValueLevelField
EndUserText.label Measuring Point view
AccessControl.authorizationCheck #CHECK view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #TRANSACTIONAL_INTERFACE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #TRANSACTIONAL view
ObjectModel.sapObjectNodeType.name MeasuringPoint view

Fields (31)

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