I_ConfignClassVH

DDL: I_CONFIGNCLASSVH SQL: ICONFIGNCLSVH Type: view BASIC Package: VCH_HL_GRP

Configuration Class Value Help

I_ConfignClassVH is a Basic CDS View that provides data about "Configuration Class Value Help" in SAP S/4HANA. It reads from 2 data sources (I_ClfnClass, I_ClfnClassTypeBasic) and exposes 5 fields with key fields Class, ClassType. It is exposed through 3 OData services (ASQL_F3458, ASQL_F3458A, UI_VARCNFCHARCGROUPMAINTAIN). Part of development package VCH_HL_GRP.

Data Sources (2)

SourceAliasJoin Type
I_ClfnClass Class from
I_ClfnClassTypeBasic Clstype inner

Annotations (14)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ICONFIGNCLSVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Configuration Class Value Help view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Class view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view

OData Services (3)

ServiceBindingVersionContractRelease
ASQL_F3458 ASQL_F3458 C2 NOT_RELEASED
ASQL_F3458A ASQL_F3458A C2 NOT_RELEASED
UI_VARCNFCHARCGROUPMAINTAIN UI_VARCNFCHARCGROUPMAINTAIN V4 C1 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Class I_ClfnClass Class User Group
KEY ClassType I_ClfnClass ClassType X Flag
ClassInternalID ClassInternalID Int class no.
ClassMaintAuthGrp ClassMaintAuthGrp Class maint.
_ClassDescription _ClassDescription

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_ConfignClassVH.
-- 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: ICONFIGNCLSVH

CREATE VIEW I_ConfignClassVH AS
SELECT
  Class.Class AS Class,
  Class.ClassType AS ClassType,
  ClassInternalID,
  ClassMaintAuthGrp
FROM I_ClfnClass AS Class
INNER JOIN I_ClfnClassTypeBasic AS Clstype ON /* join condition not captured in parsed metadata */
;