Demo_Cds_Upper

DDL: DEMO_CDS_UPPER SQL: DEMOCDSUPPER Type: view Package: SABAP_DEMOS_ABAP_CDS_CLOUD

CDS DDIC-based view, UPPER function

Demo_Cds_Upper is a CDS View that provides data about "CDS DDIC-based view, UPPER function" in SAP S/4HANA. It reads from 1 data source (t100) and exposes 5 fields with key fields sprsl, arbgb, msgnr. Part of development package SABAP_DEMOS_ABAP_CDS_CLOUD.

Data Sources (1)

SourceAliasJoin Type
t100 t100 from

Annotations (2)

NameValueLevelField
AbapCatalog.sqlViewName DEMOCDSUPPER view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY sprsl sprsl Language Code
KEY arbgb arbgb Message ID
KEY msgnr msgnr Message
text text User Group
upper_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 Demo_Cds_Upper.
-- 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: DEMOCDSUPPER

CREATE VIEW Demo_Cds_Upper AS
SELECT
  sprsl,
  arbgb,
  msgnr,
  text,
  upper(text) AS upper_text
FROM t100
;