Deprecated
This CDS view is deprecated in S/4HANA. Use I_ClfnClassVH instead. View all deprecated CDS views →

I_ClassHeaderVH

DDL: I_CLASSHEADERVH SQL: ICLASSHEADERVH Type: view COMPOSITE

Class Header Value Help

I_ClassHeaderVH is a Composite CDS View that provides data about "Class Header Value Help" in SAP S/4HANA. It reads from 1 data source (I_ClassHeader) and exposes 6 fields with key fields ClassInternalID, Language.

Data Sources (1)

SourceAliasJoin Type
I_ClassHeader classheader from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ICLASSHEADERVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey ClassInternalID view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Class Header Value Help view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_ClfnClassVH view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ClassInternalID I_ClassHeader ClassInternalID Int class no.
KEY Language classtext Language Report Text Language
Class I_ClassHeader Class User Group
ClassType I_ClassHeader ClassType X Flag
ClassDescription classtext ClassDescription Description
_Language _Language

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_ClassHeaderVH.
-- 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: ICLASSHEADERVH

CREATE VIEW I_ClassHeaderVH AS
SELECT
  classheader.ClassInternalID AS ClassInternalID,
  classtext.Language AS Language,
  classheader.Class AS Class,
  classheader.ClassType AS ClassType,
  classtext.ClassDescription AS ClassDescription
FROM I_ClassHeader AS classheader
;