DEMO_RAP_DERIVED_EVENT

DDL: DEMO_RAP_DERIVED_EVENT Type: view_entity

CDS view entity, demo for derived event

DEMO_RAP_DERIVED_EVENT is a CDS View that provides data about "CDS view entity, demo for derived event" in SAP S/4HANA. It reads from 1 data source (demo_dbtab_root) and exposes 4 fields with key field KeyField.

Data Sources (1)

SourceAliasJoin Type
demo_dbtab_root demo_dbtab_root from

Annotations (2)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label CDS view entity, demo for derived event view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY KeyField key_field Key field
DataField data_field
CharField char_field
CharField2 char_field_2

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_RAP_DERIVED_EVENT.
-- 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.

CREATE VIEW DEMO_RAP_DERIVED_EVENT AS
SELECT
  key_field AS KeyField,
  data_field AS DataField,
  char_field AS CharField,
  char_field_2 AS CharField2
FROM demo_dbtab_root
;