seo_ddl_clifs_view

DDL: SEOE_DDL_CLIFS_VIEW SQL: SEO_CLIF_VIEW Type: view

View on available classes and interfaces

seo_ddl_clifs_view is a CDS View that provides data about "View on available classes and interfaces" in SAP S/4HANA. It reads from 4 data sources (seoclass, seoclassdf, seoclasstx, t002) and exposes 3 fields.

Data Sources (4)

SourceAliasJoin Type
seoclass seoclass from
seoclassdf seoclassdf inner
seoclasstx seoclasstx left_outer
t002 t002 cross

Annotations (3)

NameValueLevelField
AbapCatalog.sqlViewName SEO_CLIF_VIEW view
EndUserText.label View on available classes and interfaces view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (3)

KeyFieldSource TableSource FieldDescription
name seoclass clsname Type Name
language t002 spras Off. Language
description seoclasstx descript Title

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 seo_ddl_clifs_view.
-- 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: SEO_CLIF_VIEW

CREATE VIEW seo_ddl_clifs_view AS
SELECT
  seoclass.clsname AS name,
  t002.spras AS language,
  seoclasstx.descript AS description
FROM seoclass
INNER JOIN seoclassdf ON /* join condition not captured in parsed metadata */
CROSS JOIN t002
LEFT OUTER JOIN seoclasstx ON /* join condition not captured in parsed metadata */
;