I_Relclasstype

DDL: I_RELCLASSTYPE SQL: IRELCLASSTYPE Type: view BASIC

CDS view for class type

I_Relclasstype is a Basic CDS View that provides data about "CDS view for class type" in SAP S/4HANA. It has 2 associations to related views.

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_Relclasstypetext _Text $projection.ClassTypeName = _Text.ClassTypeName
[1..*] I_Relstratclass _Relstratclass $projection.ClassTypeName = _Relstratclass.ClassTypeName

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IRELCLASSTYPE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label CDS view for class type view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey ClassTypeName view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ClassTypeName klart Class Type
AuthorizationGroup _Relstratclass RelStrgyClAuthorizationGroup
_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_Relclasstype.
-- 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: IRELCLASSTYPE

CREATE VIEW I_Relclasstype AS
SELECT
  klart AS ClassTypeName,
  _Relstratclass.RelStrgyClAuthorizationGroup AS AuthorizationGroup
LEFT OUTER JOIN I_Relclasstypetext AS _Text ON ClassTypeName = _Text.ClassTypeName  -- association [0..*]
LEFT OUTER JOIN I_Relstratclass AS _Relstratclass ON ClassTypeName = _Relstratclass.ClassTypeName  -- association [1..*]
;