P_APCALENDAR
Calendar for AP Overview Page
P_APCALENDAR is a CDS View in S/4HANA. Calendar for AP Overview Page. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| P_APCurrentMonth | view | inner | COMPOSITE | Current Month for AP Overview Page |
@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