I_Relclassdescription

DDL: I_RELCLASSDESCRIPTION SQL: IRELCLASSDESC Type: view BASIC

CDS view for description of release strategy class

I_Relclassdescription is a Basic CDS View that provides data about "CDS view for description of release strategy class" in SAP S/4HANA. It reads from 1 data source (swor) and exposes 6 fields with key fields InternalClassNumber, Language, ClassKeywordPositionNumber. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
swor swor from

Associations (2)

CardinalityTargetAliasCondition
[1] klah _klah $projection.InternalClassNumber = _klah.clint
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IRELCLASSDESC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label CDS view for description of release strategy class view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey InternalClassNumber view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY InternalClassNumber clint Int class no.
KEY Language spras Off. Language
KEY ClassKeywordPositionNumber klpos Item number
ClassDescription kschl Tax Item Type
AuthorizationGroup _klah bgrkp Class maint.
_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_Relclassdescription.
-- 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: IRELCLASSDESC

CREATE VIEW I_Relclassdescription AS
SELECT
  clint AS InternalClassNumber,
  spras AS Language,
  klpos AS ClassKeywordPositionNumber,
  kschl AS ClassDescription,
  _klah.bgrkp AS AuthorizationGroup
FROM swor
LEFT OUTER JOIN klah AS _klah ON InternalClassNumber = _klah.clint  -- association [1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;