I_ClfnCharcReference

DDL: I_CLFNCHARCREFERENCE SQL: INGCCHR15 Type: view BASIC

Reference of Clfn Characteristic

I_ClfnCharcReference is a Basic CDS View that provides data about "Reference of Clfn Characteristic" in SAP S/4HANA. It reads from 2 data sources (cabn, cabnz) and exposes 4 fields with key fields CharcInternalID, CharcReferenceTable, CharcReferenceTable, CharcReferenceTableField.

Data Sources (2)

SourceAliasJoin Type
cabn Characteristic union
cabnz CharcReference from

Annotations (11)

NameValueLevelField
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName INGCCHR15 view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Reference of Clfn Characteristic view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CharcInternalID
KEY CharcReferenceTable cabnz attab Table Name
KEY CharcReferenceTable cabn attab Table Name
KEY CharcReferenceTableField cabn atfel Field Name

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_ClfnCharcReference.
-- 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: INGCCHR15

CREATE VIEW I_ClfnCharcReference AS
SELECT
  cast ( CharcReference.atinn as atinn_no_conv preserving type ) AS CharcInternalID,
  CharcReference.attab AS CharcReferenceTable,
  Characteristic.atfel AS CharcReferenceTableField
FROM cabnz AS CharcReference
-- UNION with additional select branch(es): cabn
;