I_MeasurementPtHierText

DDL: I_MEASUREMENTPTHIERTEXT SQL: IPVMPHIERNM Type: view BASIC

Measurement Point Hierarchy Name

I_MeasurementPtHierText is a Basic CDS View that provides data about "Measurement Point Hierarchy Name" in SAP S/4HANA. It reads from 1 data source (setheadert) and exposes 3 fields with key fields MeasurementPtHier, Language.

Data Sources (1)

SourceAliasJoin Type
setheadert setheadert from

Annotations (11)

NameValueLevelField
EndUserText.label Measurement Point Hierarchy Name view
ObjectModel.dataCategory #TEXT view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IPVMPHIERNM 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 (3)

KeyFieldSource TableSource FieldDescription
KEY MeasurementPtHier Set Name
KEY Language Primary lang.
MeasurementPtHierName Title

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_MeasurementPtHierText.
-- 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: IPVMPHIERNM

CREATE VIEW I_MeasurementPtHierText AS
SELECT
  cast ( setname as oiu_mp_set ) AS MeasurementPtHier,
  cast( langu as spras ) AS Language,
  cast ( descript as oiu_vdm_mp_hier_nm ) AS MeasurementPtHierName
FROM setheadert
;