DEMO_CDS_WRONG_TO_ONE_1_VE

DDL: DEMO_CDS_WRONG_TO_ONE_1_VE Type: view_entity Package: SABAP_DEMOS_ABAP_CDS_CLASSIC

CDS view entity with join expression

DEMO_CDS_WRONG_TO_ONE_1_VE is a CDS View that provides data about "CDS view entity with join expression" in SAP S/4HANA. It reads from 1 data source (scarr) and exposes 3 fields. Part of development package SABAP_DEMOS_ABAP_CDS_CLASSIC.

Data Sources (1)

SourceAliasJoin Type
scarr c from

Annotations (1)

NameValueLevelField
EndUserText.label CDS view entity with join expression view

Fields (3)

KeyFieldSource TableSource FieldDescription
carrid scarr carrid
carrname scarr carrname
connid p connid
@EndUserText.label: 'CDS view entity with join expression'
define view entity DEMO_CDS_WRONG_TO_ONE_1_VE
  as select from
                             scarr as c
      left outer many to one join spfli as p
        on c.carrid = p.carrid
    {
      c.carrid   as carrid,
      c.carrname as carrname,
      p.connid   as connid
    }