Hi OFBizzer,
Please create a Jira issue with a patch for this.
See
https://cwiki.apache.org/OFBADMIN/ofbiz-contributors-best-practices.html for some guidance.
Cheers
Paul Foxworthy
OFBizzer wrote
In case anyone needs this functionality, figured it out myself.
Replace on line 990 of framework/entity/src/org/ofbiz/entity/model/ModelViewEntity.java:
String colName = entityAlias + "." + modelField.getColName();
with:
String colName = entityAlias + "." + SqlJdbcUtil.filterColName(modelField.getColName());