DEMO_RAP_DEFAULT_VALUES_FUNC

DDL: DEMO_RAP_DEFAULT_VALUES_FUNC Type: view_entity

CDS root view entity

DEMO_RAP_DEFAULT_VALUES_FUNC is a CDS View that provides data about "CDS root view entity" in SAP S/4HANA. It reads from 1 data source (demo_dbtab_root) and exposes 6 fields with key field key_field.

Data Sources (1)

SourceAliasJoin Type
demo_dbtab_root demo_dbtab_root from

Annotations (2)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label CDS root view entity view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY key_field key_field Key field
data_field data_field
char_field char_field
char_field_2 char_field_2
dec_field dec_field
_to_child _to_child

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_DEFAULT_VALUES_FUNC.
-- 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_DEFAULT_VALUES_FUNC AS
SELECT
  key_field,
  data_field,
  char_field,
  char_field_2,
  dec_field
FROM demo_dbtab_root
;