I have successfully installed the Report Server and configured email settings. Everything is working fine. I have created a Birt Report and uploaded, now I want to schedule it and send email to recipients but on the dashboard Schedule button is disabled, I believe I am missing something but not sure, can anyone please advise.
Below is my schedule.cf file
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<scheduler>
<mailaction html="false">
<subject>ReportServer: ${subject}</subject>
<text>Guten Tag,
eine Einplanung wurde ausgeführt.
Bericht: ${report.getName()}
Nachricht: ${message}
</text>
<attachment>
<name>rep-${report.getName()}-${RS_CURRENT_DATE}</name>
</attachment>
</mailaction>
<fileaction disabled="false" html="false">
<subject>ReportServer: Einplanung in Teamspace gespeichert</subject>
<text>Guten Tag,
eine Einplanung in den Teamspace wurde ausgefuehrt.
Bericht: ${report.getName()}
Dateiname: ${filename}
Beschreibung: ${description}
Teamspace: ${teamspace.getName()}
Ordner: ${folder.getName()}
</text>
</fileaction>
<notification disabled="false" html="false">
<scheduled>
<subject>ReportServer: Neue Einplanung</subject>
<text>Es wurde eine Einplanung für Sie vorgenommen.
Bericht: ${reportName}
Benutzer: ${scheduleUser}
Nächste Termine: ${nextDates}
</text>
</scheduled>
<unscheduled>
<subject>ReportServer: Einplanung gelöscht</subject>
<text>Eine Einplanung wurde gelöscht.
Report: ${reportName}</text>
</unscheduled>
<failed>
<subject>ReportServer: Einplanung fehlgeschlagen</subject>
<text>Die eingeplante Ausführung des Berichts ist fehlgeschlagen.
Bericht: ${reportName}
Fehlermeldung: ${errMsg}
Empfänger: ${recipients}
Fehler-Details: ${stacktrace}
</text>
</failed>
</notification>
<properties>
<disabled>false</disabled>
</properties>
</scheduler>
</configuration>
