How to generate word report output when i submit the BIRT report from the application
#1
Posted 28 February 2010 - 10:39 AM
function init()
{
actuate.load("viewer");
actuate.initialize( "<%=PORT_URL%>/", null, "<%=username%>", "<%=password%>", GetParamValue );
}
}
myViewer = new actuate.Viewer( "myViewerDivContainer" );
myViewer.setWidth(1000);
myViewer.setReportName("<%=Report_Name%>" );
myViewer.setParameters(
{
"pin_Market": theStatus['market']
}
);
myViewer.submit();
I would like to know what exactly do i need to do added to get generated in doc format instead of viewing in BIRT Viewer.
#2
Posted 03 March 2010 - 04:48 PM
You could use JSAPI call "actuate.Viewer.downloadReport" to download the report. At this time this API only supports PDF and HTML formats. Here is the link to documentation on JSAPI:
http://www.birt-exch...mming-jsapi.pdf
Ashwini
#6
Posted 04 March 2010 - 04:47 PM
1.
http://localhost:890...me=/Public/BIRT and BIRT Report Studio Examples/Sales by Customer.rptdesign&__format=doc
2.
http://localhost:890...d=&__format=doc
Please let me know which one is better ?




MultiQuote
