Cds_View_Text

DDL: CDS_VIEW_TEXT SQL: CDSVIEWTEXT Type: view

CDS View Label

Cds_View_Text is a CDS View that provides data about "CDS View Label" in SAP S/4HANA. It reads from 1 data source (ddddlsrc02bt) and exposes 4 fields with key fields DDLSourceName, Language, CDSName.

Data Sources (1)

SourceAliasJoin Type
ddddlsrc02bt ddddlsrc02bt from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName CDSVIEWTEXT view
EndUserText.label CDS View Label view
ObjectModel.usageType.serviceQuality #P view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY DDLSourceName ddlname DDL Source Name
KEY Language ddlanguage Lang.
KEY CDSName strucobjn DD: Name of a structured object (e.g. entity, context)
DDLSourceText ddtext Short text

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 Cds_View_Text.
-- 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: CDSVIEWTEXT

CREATE VIEW Cds_View_Text AS
SELECT
  ddlname AS DDLSourceName,
  ddlanguage AS Language,
  strucobjn AS CDSName,
  ddtext AS DDLSourceText
FROM ddddlsrc02bt
;