Trying to open Amount Outstanding Report results in SQL error
URI
/openboxes/report/amountOutstandingOnOrdersReport
Class
java.sql.SQLSyntaxErrorException
Message
Expression #2 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'order_adjustment_invoice_summary.order_id' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
This is a bug that we’ll need to fix. In the meantime, there’s an workaround that you can apply via MySQL configuration. Just remove ONLY_FULL_GROUP_BY from sql_mode value. You can do this in the current session to see if the issue is resolved, add then add it to your MySQL configuration (requires restart).
Here’s a similar bug report (different feature) from a few years ago.