demo_cds_authority_inheriting

DDL: DEMO_CDS_AUTHORITY_INHERITING SQL: DEMO_CDS_INHTING Type: view

demo_cds_authority_inheriting is a CDS View in SAP S/4HANA. It reads from 1 data source (scarr) and exposes 3 fields with key field carrid.

Data Sources (1)

SourceAliasJoin Type
scarr scarr from

Annotations (2)

NameValueLevelField
AbapCatalog.sqlViewName DEMO_CDS_INHTING view
AccessControl.authorizationCheck #CHECK view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY carrid carrid
carrname carrname
currcode currcode
@AbapCatalog.sqlViewName: 'DEMO_CDS_INHTING'
@AccessControl.authorizationCheck: #CHECK
define view demo_cds_authority_inheriting
  as select from
    scarr
    {
      key carrid,
          carrname,
          currcode
    };