I’ve been working on a project where we needed to generate branded invoices directly from an Oracle APEX 24.2 backend. While APEX_DATA_EXPORT is great for simple data, I found that formatting nested JSON into a high-fidelity PDF layout was becoming a major PL/SQL bottleneck.
I recently tried moving the design logic into a visual web-based designer (using a tool called MaxPrint) to keep the database side ‘clean.’ It basically allows you to map your SQL results directly to a layout without manual template files.
Has anyone else successfully implemented a ‘designer-first’ approach for reporting in their low-code apps, or do you still prefer using traditional PL/SQL packages for PDF generation?