I_SetClassText

DDL: I_SETCLASSTEXT SQL: ISETCLASSTEXT Type: view BASIC

Set Class Text

I_SetClassText is a Basic CDS View that provides data about "Set Class Text" in SAP S/4HANA. It reads from 1 data source (setclst) and exposes 6 fields with key fields SetClass, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
setclst setclst from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_SetClass _SetClass $projection.SetClass = _SetClass.SetClass
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ISETCLASSTEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Set Class Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.representativeKey SetClass view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY SetClass setclst setclass Set Class
KEY Language setclst langu Primary lang.
SetClassShortDescription setclst descript_s Set Class
SetClassLongDescription setclst descript Title
_Language _Language
_SetClass _SetClass

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_SetClassText.
-- 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: ISETCLASSTEXT

CREATE VIEW I_SetClassText AS
SELECT
  setclst.setclass AS SetClass,
  setclst.langu AS Language,
  setclst.descript_s AS SetClassShortDescription,
  setclst.descript AS SetClassLongDescription
FROM setclst
LEFT OUTER JOIN I_SetClass AS _SetClass ON SetClass = _SetClass.SetClass  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;