DEMO_MANAGED_DRAFT_ROOT

DDL: DEMO_MANAGED_DRAFT_ROOT Type: view_entity

CDS view entity, RAP unmanaged, draft

DEMO_MANAGED_DRAFT_ROOT is a CDS View that provides data about "CDS view entity, RAP unmanaged, draft" in SAP S/4HANA. It reads from 1 data source (demo_tab_root_4) and exposes 6 fields with key field key_field. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
demo_tab_root_4 demo_tab_root_4 from

Associations (1)

CardinalityTargetAliasCondition
[1..*] DEMO_MANAGED_DRAFT_CHILD _child

Annotations (2)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label CDS view entity, RAP unmanaged, draft view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY key_field key_field Key field
field1 field1 Value
field2 field2 Value
field3 field3 Value
field4 field4 Value
_child _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_MANAGED_DRAFT_ROOT.
-- 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_MANAGED_DRAFT_ROOT AS
SELECT
  key_field,
  field1,
  field2,
  field3,
  field4
FROM demo_tab_root_4
LEFT OUTER JOIN DEMO_MANAGED_DRAFT_CHILD AS _child ON /* condition not available in parsed metadata */  -- association [1..*]
;