← Back to team overview

dhis2-devs team mailing list archive

Re: 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