Hi,
I have a classic report with a simple select expression :
select c.libelle "Activité", sum(b.duree) "Durée"
from fiche a, activite_faite b,
activites c, agent d
where a.date_activite BETWEEN :P26_DATE_DEBUT AND :P26_DATE_FIN
AND a.agent_id = :P26_AGENT_ID
AND a.fiche_id = b.fiche_id
AND b.activites_id = c.activites_id
AND a.agent_id = d.agent_id
group by c.libelle
order by sum(b.duree) desc
I have enabled the printing option of this report in the Attributes section.
When I click on Print for downloading the PDF file, it is downloaded but Adobe Acrobat do not open it and instead display an error message saying that it cannot open the file because it seems corrupted. The PDF file is not empty, I could open it with Word. It has a size of 15 Kb.
The same problem of corrupted file happens when I try ti download from Interactiuve report.
The instance level Print section is configured as "Oracle Rest Data service".
I am using Apex 5.1. I would like to be able to open this file in Adobe without errors.
Regards.