Cds_With_Dcl_Pfcg

DDL: CDS_WITH_DCL_PFCG SQL: CdsFrwk_DEMO_14B Type: view

CDS based on DCL with PFCG conditions

Cds_With_Dcl_Pfcg is a CDS View that provides data about "CDS based on DCL with PFCG conditions" in SAP S/4HANA. It reads from 1 data source (sflight) and exposes 7 fields with key fields carrid, connid, fldate.

Data Sources (1)

SourceAliasJoin Type
sflight sflight from

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName CdsFrwk_DEMO_14B view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label CDS based on DCL with PFCG conditions view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY carrid sflight carrid
KEY connid sflight connid
KEY fldate sflight fldate
currency sflight currency
planetype sflight planetype
seatsmax sflight seatsmax
seatsocc sflight seatsocc
@AbapCatalog.sqlViewName: 'CdsFrwk_DEMO_14B'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'CDS based on DCL with PFCG conditions'
define view Cds_With_Dcl_Pfcg as select from sflight
{

  key sflight.carrid,
  key sflight.connid,
  key sflight.fldate,
      sflight.currency,
      sflight.planetype,
      sflight.seatsmax,
      sflight.seatsocc
}    
  
  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"SFLIGHT"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/