: If you are customizing how reports are surfaced, you may need to adjust the Report Type Code or Report Image Path via the functional setup tasks to ensure the REPORT_DISPLAY_ICON is correctly mapped. Key Columns in GL_FRC_REPORTS_B

/** * Endpoint: GET /api/v1/gl/reports/b * Feature ID: glfrcreportsb */ @GetMapping("/b") public ResponseEntity<List<FinancialReportRecord>> getReportB( @RequestParam String ledgerId, @RequestParam @DateTimeFormat(iso = DateTimeFormat.ISO.DATE) LocalDate startDate, @RequestParam @DateTimeFormat(iso = DateTimeFormat.ISO.DATE) LocalDate endDate)

private final GLFinancialReportService reportService;