I_GHOExtdMeasurementDocument

DDL: I_GHOEXTDMEASUREMENTDOCUMENT Type: view_entity BASIC

Measurement Document Header

I_GHOExtdMeasurementDocument is a Basic CDS View that provides data about "Measurement Document Header" in SAP S/4HANA. It reads from 1 data source (gho_imrg_ext) and exposes 6 fields with key field MeasurementDocument.

Data Sources (1)

SourceAliasJoin Type
gho_imrg_ext a from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Measurement Document Header view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY MeasurementDocument gho_imrg_ext mdocm Measurement Doc. No.
UpstreamMsmtFreq gho_imrg_ext measmnt_freq Measurement Freq
GHONetworkObjectID gho_imrg_ext tplnr Functional loc.
UpstreamMsmtPoint gho_imrg_ext measmnt_point Measuring point
UpstreamMsmtDate gho_imrg_ext idate Single-Character Flag
UpstreamMsmtTime gho_imrg_ext itime Single-Character Flag

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_GHOExtdMeasurementDocument.
-- 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_GHOExtdMeasurementDocument AS
SELECT
  a.mdocm AS MeasurementDocument,
  a.measmnt_freq AS UpstreamMsmtFreq,
  a.tplnr AS GHONetworkObjectID,
  a.measmnt_point AS UpstreamMsmtPoint,
  a.idate AS UpstreamMsmtDate,
  a.itime AS UpstreamMsmtTime
FROM gho_imrg_ext AS a
;