Hi Robin, the problem is that you have boolean fields in the eventreport table with null values, which crashes when dhis tries to convert it into a java primitive. Try running this SQL on your db:
update eventreport set rowsubtotals = false where rowsubtotals is null; If it still fails, try repeating for the other boolean fields in that table. Lars
_______________________________________________ Mailing list: https://launchpad.net/~dhis2-devs Post to : [email protected] Unsubscribe : https://launchpad.net/~dhis2-devs More help : https://help.launchpad.net/ListHelp

