P_APCALENDAR

CDS View

P_APCALENDAR is a CDS View in S/4HANA. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
P_APCurrentMonth view inner COMPOSITE
@AbapCatalog.sqlViewName: 'PAPCALENDAR'
@VDM.viewType: #COMPOSITE
@VDM.private:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE

define view P_APCalendar
  as select from I_CalendarDate
{
  key CalendarYear,
  key CalendarMonth,
      YearMonth,
      min(CalendarDate) as FirstDayOfMonth,
      max(CalendarDate) as LastDayOfMonth
}

group by
  CalendarYear,
  CalendarMonth,
  YearMonth
  
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CALENDARDATE"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/