hey everyone, I am trying to generate a outlook type alarm/alert in openerp. As for different module as I have seen they send email for alert. But I want to show a popup message. As in openerp we have corn.py or scheduler, I am trying to create a event from Calender and that event should show a popup message will notify about the event. from Settings -> Scheduler -> Scheduled Action ->Run Event Reminder - > technical Data its call a method do_run_scheduler from calender.alarm. I can create a custom method and use this for popup message by
raise osv.except_osv(_('Warning!'), ('Event'))
but its not showing in openerp screen rather its showing in log file. Have any idea. How to accomplish this warning message using this scheduler action. Appreciate your help.