I already have a working system in place using what I learnt from the following:
http://digiassn.blogspot.com/2005/10/birt-report-server-pt-2.html
It works pretty neat. I did need to make a couple of modifications to make it work on solaris (needless to say). First wget is not in system path therefore I needed to do the following :
WGET="/usr/sfw/bin/wget"
And later on:
$WGET "$RUNURL=RegionDailyPeak.rptdesign&__format=doc&Region=Central" -O "$EXPORTDIR/CentralDailyPeak.doc" -q
I also hid the server birt viewer url into a variable as :
RUNURL="http://
and EXPORTDIR as the path where I want the download.
Also I wrote some code to send emails as well and used that as a script. Additionally I needed to used the zip command to zip large reports before mailing them :
e.g.:
zip $EXPORTDIR/TCHGPRSTraffic.zip $EXPORTDIR/TCHGPRSTraffic.xls
and then mailed the zip file. Its working fine . Any parameters needing any form of dynamic nature were put into the report using a method I posted previously.
I am thinking of encapsulating all these cool things into a web server application using flex?
Anyone interested in such an application?
The following is a list of the features:
- A simple admin login screen
- Server Settings
- adminusername / adminpassword.
- BIRT report viewer url (the run url... to which only report and further parameters will be passed as shown above)
- The report folder url.
- Notification email address
- mailer settings:
- A simple report schedules list screen.:
- Options for scheduling:
- crontab string,
- Select report from a combo box
- outputfolder
- zip or not to zip
- notify of running by email
- format : valid formats : pdf, doc, ppt, xls..... but not html. A simple downloader that will download a single url will be used. (KISS)
- mail to. (comma seperated destination addresses)
- append a date string to ( low priority )
- A parameters table. Which lists parameter vs. value. Nothing dynamic about it. You need to know the paramter names yourself to be able to use it. (low priority .... make parameters list available once you select the report)
- A reports management screen:
Seems simple enough :) But requires dedicated time.... which I am short on right now.... I need motivation... anyone interested in giving me some?
hi,
ReplyDeleteYes, can you please provide the Example application what you have acheived in birt.
thanks
Seeker
hi,
ReplyDeleteYes, can you please provide the Example application what you have acheived in birt.
thanks
Seeker
@seeker
ReplyDeletehttp://digiassn.blogspot.com/2005/10/birt-report-server-pt-2.html
pretty much explains all you need with examples ... i just mentioned here modifications you need to make to get it working on solaris.