| Day | Week | Month | List |
| Sun | Mon | Tue | Wed | Thu | Fri | Sat |
|---|---|---|---|---|---|---|
| 26 | 27 | 28 | 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 |
Today is December 21, 2025
Calendars:
- JM's Computers
Error in include template "/var/www/jmspcs/packages/calendar/www/view-one-day-display": Database operation "select" failed (exception ERROR, "ERROR: date/time field value out of range: "1500-02-29"
")
ERROR: date/time field value out of range: "1500-02-29"
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(end_date,'HH24'),'90') as end_hour,
to_number(to_char(end_date,'MI'),'90') as end_minutes,
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,
(select type from cal_item_types where item_type_id= ci.item_type_id) 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
from cal_items ci,
acs_events e,
timespans s,
time_intervals t,
acs_activities a,
calendars cals
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_date('1500-02-29','YYYY-MM-DD')
and to_date('1500-02-29','YYYY-MM-DD') + cast('23 hours 59 minutes 59 seconds' as interval)
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 to_char(start_date, 'HH24:MI') = to_char(end_date, 'HH24:MI')
and ((cals.package_id = '2120' and cals.private_p = 'f')
or (cals.private_p = 't' and cals.owner_id = '0'))
order by name

