in service/src/main/java/org/apache/fineract/cn/reporting/service/internal/specification/LoanListReportSpecification.java [146:167]
private void initializeMapping() {
this.customerColumnMapping.put(CUSTOMER, "cst.identifier");
this.customerColumnMapping.put(FIRST_NAME, "cst.given_name");
this.customerColumnMapping.put(MIDDLE_NAME, "cst.middle_name");
this.customerColumnMapping.put(LAST_NAME, "cst.surname");
this.customerColumnMapping.put(OFFICE, "cst.assigned_office");
this.loanColumnMapping.put(LOAN_TERM, "il_cases.term_range_maximum");
this.loanColumnMapping.put(TIME_UNIT, "il_cases.term_range_temporal_unit");
this.loanColumnMapping.put(PRINCIPAL, "il_cases.balance_range_maximum");
this.loanColumnMapping.put(CASE, "il_cases.case_id");
this.caseColumnMapping.put(LOAN, "cases.identifier");
this.caseColumnMapping.put(PRODUCT, "cases.product_identifier");
this.caseColumnMapping.put(STATE, "cases.current_state");
this.caseColumnMapping.put(DATE_RANGE, "cases.created_on");
this.caseColumnMapping.put(EMPLOYEE, "cases.created_by");
this.allColumnMapping.putAll(customerColumnMapping);
this.allColumnMapping.putAll(loanColumnMapping);
this.allColumnMapping.putAll(caseColumnMapping);
}