I_ClfnClassType

DDL: I_CLFNCLASSTYPE SQL: INGCCLSC2 Type: view BASIC

Class Type of Classification

I_ClfnClassType is a Basic CDS View that provides data about "Class Type of Classification" in SAP S/4HANA. It reads from 3 data sources (tcla, tcla, tclao) and exposes 17 fields with key fields ClassType, ClfnObjectTable, ClfnObjectTable. It has 1 association to related views.

Data Sources (3)

SourceAliasJoin Type
tcla Basic from
tcla Basic inner
tclao Multiple union

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ClfnClassTypeText _ClassTypeText _ClassTypeText.ClassType = $projection.ClassType

Annotations (12)

NameValueLevelField
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName INGCCLSC2 view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Class Type of Classification view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.representativeKey ClassType view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY ClassType tcla klart Class Type
KEY ClfnObjectTable tcla obtab Table
MultipleObjTableClfnIsAllowed tcla multobj Multiple objs
ClfnNewNumberingIsAllowed tcla ausp_new AUSP new
EngChangeMgmtIsAllowed tcla aediezuord ECH (time)
MultipleClassIsAllowed tcla mfkls Multiple class.
ClfnObjectHierarchyLevel Sort pos.
ClassTypeIsUsableInVarConfign tcla varklart Var. class type
klartasClassType
KEY ClfnObjectTable tclao obtab Table
MultipleObjTableClfnIsAllowed tcla multobj Multiple objs
ClfnNewNumberingIsAllowed tcla ausp_new AUSP new
EngChangeMgmtIsAllowed tclao aediezuord ECH (time)
MultipleClassIsAllowed tclao mfkls Multiple class.
ClfnObjectHierarchyLevel tclao zaehl Sort pos.
ClassTypeIsUsableInVarConfign tcla varklart Var. class type
_ClassTypeText _ClassTypeText

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_ClfnClassType.
-- 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: INGCCLSC2

CREATE VIEW I_ClfnClassType AS
SELECT
  Basic.klart AS ClassType,
  Basic.obtab AS ClfnObjectTable,
  Basic.multobj AS MultipleObjTableClfnIsAllowed,
  Basic.ausp_new AS ClfnNewNumberingIsAllowed,
  Basic.aediezuord AS EngChangeMgmtIsAllowed,
  Basic.mfkls AS MultipleClassIsAllowed,
  '00' AS ClfnObjectHierarchyLevel,
  Basic.varklart AS ClassTypeIsUsableInVarConfign
FROM tcla AS Basic
INNER JOIN tcla AS Basic ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_ClfnClassTypeText AS _ClassTypeText ON _ClassTypeText.ClassType = ClassType  -- association [0..*]
-- UNION with additional select branch(es): tclao
;