I_SetClass

DDL: I_SETCLASS SQL: ISETCLASS Type: view BASIC Package: VDM_FND

Set Class

I_SetClass is a Basic CDS View that provides data about "Set Class" in SAP S/4HANA. It reads from 1 data source (setcls) and exposes 3 fields with key field SetClass. It has 1 association to related views. Part of development package VDM_FND.

Data Sources (1)

SourceAliasJoin Type
setcls setcls from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SetClassText _SetClassText $projection.SetClass = _SetClassText.SetClass

Annotations (11)

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

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SetClass setcls setclass Set Class
ExternalSetNameLength setcls setnamleng Name Length
_SetClassText _SetClassText

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_SetClass.
-- 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: ISETCLASS

CREATE VIEW I_SetClass AS
SELECT
  setcls.setclass AS SetClass,
  setcls.setnamleng AS ExternalSetNameLength
FROM setcls
LEFT OUTER JOIN I_SetClassText AS _SetClassText ON SetClass = _SetClassText.SetClass  -- association [0..*]
;