A_FailedMeasurementReading

DDL: A_FAILEDMEASUREMENTREADING Type: view_entity CONSUMPTION Package: VDM_EAM_MEASUREMENTDOCUMENT

Failed Measurement Document Reading

A_FailedMeasurementReading is a Consumption CDS View that provides data about "Failed Measurement Document Reading" in SAP S/4HANA. It reads from 1 data source (R_FailedMeasurementReadingTP) and exposes 6 fields with key fields MsmtRdngDate, MsmtRdngTime, MsmtRdngSourceMeasurementDoc, MeasuringPoint. It is exposed through 2 OData services (API_MEASUREMENTDOCUMENT, ASQL_F7184). Part of development package VDM_EAM_MEASUREMENTDOCUMENT.

Data Sources (1)

SourceAliasJoin Type
R_FailedMeasurementReadingTP R_FailedMeasurementReadingTP projection

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Failed Measurement Document Reading view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view

OData Services (2)

ServiceBindingVersionContractRelease
API_MEASUREMENTDOCUMENT API_MEASUREMENTDOCUMENT V4 C2 C1
ASQL_F7184 ASQL_F7184 C2 NOT_RELEASED

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY MsmtRdngDate MsmtRdngDate
KEY MsmtRdngTime MsmtRdngTime
KEY MsmtRdngSourceMeasurementDoc MsmtRdngSourceMeasurementDoc
KEY MeasuringPoint MeasuringPoint
MsmtRdngTransfFailedMsgNumber MsmtRdngTransfFailedMsgNumber
MeasurementReadingDateTime MeasurementReadingDateTime

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_FailedMeasurementReading.
-- 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_FailedMeasurementReading AS
SELECT
  MsmtRdngDate,
  MsmtRdngTime,
  MsmtRdngSourceMeasurementDoc,
  MeasuringPoint,
  MsmtRdngTransfFailedMsgNumber,
  MeasurementReadingDateTime
FROM R_FailedMeasurementReadingTP
;