dhis2-users team mailing list archive
-
dhis2-users team
-
Mailing list archive
-
Message #06310
Re: [Dhis2-devs] DHIS2 - Error message when saving event report as favorite
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
References