I_ClfnClassVH

DDL: I_CLFNCLASSVH SQL: INGCCLS1_VH Type: view BASIC Package: NGC_CORE_VDM

Classification Class

I_ClfnClassVH is a Basic CDS View that provides data about "Classification Class" in SAP S/4HANA. It reads from 1 data source (I_ClfnClass) and exposes 5 fields with key fields Class, ClassType. It is exposed through 3 OData services (ASQL_F3458, ASQL_F3829, ASQL_F6764). Part of development package NGC_CORE_VDM.

Data Sources (1)

SourceAliasJoin Type
I_ClfnClass Class from

Annotations (15)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName INGCCLS1_VH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Classification Class 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_F3829 ASQL_F3829 C2 NOT_RELEASED
ASQL_F6764 ASQL_F6764 C2 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_ClfnClassVH.
-- 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: INGCCLS1_VH

CREATE VIEW I_ClfnClassVH AS
SELECT
  Class.Class AS Class,
  Class.ClassType AS ClassType,
  ClassInternalID,
  ClassMaintAuthGrp
FROM I_ClfnClass AS Class
;