| Day | Week | Month | List |
| Sun | Mon | Tue | Wed | Thu | Fri | Sat |
|---|---|---|---|---|---|---|
| 29 | 30 | 31 | 1 | 2 | 3 | 4 |
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 | 31 | 1 |
Today is December 22, 2025
Calendars:
- JM's Computers
Error in include template "/var/www/jmspcs/packages/calendar/www/view-list-display": Database operation "select" failed (exception ERROR, "ERROR: date/time field value out of range: "1500-02-29 00:00"
")
ERROR: date/time field value out of range: "1500-02-29 00:00"
SQL:
select to_char(start_date, 'YYYY-MM-DD HH24:MI:SS') as ansi_start_date,
to_char(end_date, 'YYYY-MM-DD HH24:MI:SS') as ansi_end_date,
to_number(to_char(start_date,'HH24'),'90') as start_hour,
to_number(to_char(start_date,'MI'),'90') as start_minutes,
to_number(to_char(start_date,'SSSSS'),'99990') as start_seconds,
to_number(to_char(end_date,'HH24'),'90') as end_hour,
to_number(to_char(end_date,'MI'),'90') as end_minutes,
to_number(to_char(end_date,'SSSSS'),'99990') as end_seconds,
coalesce(e.name, a.name) as name,
coalesce(e.status_summary, a.status_summary) as status_summary,
coalesce(e.description, a.description) as description,
e.event_id as item_id,
cit.type as item_type,
cals.calendar_id,
cals.calendar_name,
cals.package_id as cal_package_id,
(select count(1) from attachments where object_id=e.event_id) as num_attachments
, to_char(now(), 'YYYY-MM-DD HH24:MI:SS') as ansi_today, recurrence_id
from acs_activities a,
acs_events e,
timespans s,
time_intervals t,
calendars cals,
cal_items ci left join
cal_item_types cit on cit.item_type_id = ci.item_type_id
where e.timespan_id = s.timespan_id
and s.interval_id = t.interval_id
and e.activity_id = a.activity_id
and start_date between
to_timestamp('1500-01-30','YYYY-MM-DD HH24:MI:SS') and to_timestamp('1500-02-29 00:00', 'YYYY-MM-DD HH24:MI:SS')
and ci.cal_item_id= e.event_id
and cals.calendar_id = ci.on_which_calendar
and e.event_id = ci.cal_item_id
and ((cals.package_id = '2120' and cals.private_p = 'f')
or (cals.private_p = 't' and cals.owner_id = '0'))
order by start_date

