I_MeasurementPtHier

DDL: I_MEASUREMENTPTHIER SQL: IPVMPHIER Type: view BASIC

Measurement Point Hierarchy

I_MeasurementPtHier is a Basic CDS View (Dimension) that provides data about "Measurement Point Hierarchy" in SAP S/4HANA. It reads from 1 data source (setheader) and exposes 2 fields with key field MeasurementPtHier. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
setheader setheader from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MeasurementPtHierText _Text $projection.MeasurementPtHier = _Text.MeasurementPtHier

Annotations (12)

NameValueLevelField
EndUserText.label Measurement Point Hierarchy view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Metadata.allowExtensions true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IPVMPHIER view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey MeasurementPtHier view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MeasurementPtHier Set Name
_Text _Text

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_MeasurementPtHier.
-- 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.
-- SQL view name: IPVMPHIER

CREATE VIEW I_MeasurementPtHier AS
SELECT
  cast ( setname as oiu_mp_set ) AS MeasurementPtHier
FROM setheader
LEFT OUTER JOIN I_MeasurementPtHierText AS _Text ON MeasurementPtHier = _Text.MeasurementPtHier  -- association [0..*]
;