BIRT Exchange Forum: Bursting - BIRT Exchange Forum

Jump to content


 

No Latest Open Poll.

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Bursting Bursting in Actiate11 Rate Topic: -----

#1 User is offline   siva_birt Icon

  • Junior Member
  • PipPip
  • Group: Members
  • Posts: 28
  • Joined: 08-June 08


Posted 11 February 2012 - 06:53 PM

Hi,
Help me how to create an Actuate BIRT report with Bursting. I mean one rptdesign file should give multiple output files. I am trying to reproduce a erdpro report by using brdpro.
Thanks...
0

#2 User is offline   mwilliams Icon

  • BIRT Guru
  • Icon
  • View blog
  • Group: Administrators
  • Posts: 12969
  • Joined: 16-May 08


Posted 13 February 2012 - 01:17 PM

So, when you run a report, you want multiple sub reports to run or you want the first report to run multiple times with many different parameters?
Regards,

Michael

Twitter
Facebook
Blog
Yahoo: mwilliams_actuate@yahoo.com
Google: mwilliams.actuate@gmail.com
0

#3 User is offline   mwilliams Icon

  • BIRT Guru
  • Icon
  • View blog
  • Group: Administrators
  • Posts: 12969
  • Joined: 16-May 08


Posted 13 February 2012 - 01:19 PM

Maybe this devShare entry will help:

http://www.birt-exch...ting-with-birt/
Regards,

Michael

Twitter
Facebook
Blog
Yahoo: mwilliams_actuate@yahoo.com
Google: mwilliams.actuate@gmail.com
0

#4 User is offline   mwilliams Icon

  • BIRT Guru
  • Icon
  • View blog
  • Group: Administrators
  • Posts: 12969
  • Joined: 16-May 08


Posted 13 February 2012 - 01:20 PM

Or this one:

http://www.birt-exch...t-using-script/
Regards,

Michael

Twitter
Facebook
Blog
Yahoo: mwilliams_actuate@yahoo.com
Google: mwilliams.actuate@gmail.com
0

#5 User is offline   siva_birt Icon

  • Junior Member
  • PipPip
  • Group: Members
  • Posts: 28
  • Joined: 08-June 08


Posted 14 February 2012 - 05:19 PM

View Postmwilliams, on 13 February 2012 - 01:20 PM, said:


Thank you Mike. I am able to execute script one. But other one(java) is giving error. I will try to implement this by using my client database. Thanks once again.
0

#6 User is offline   mwilliams Icon

  • BIRT Guru
  • Icon
  • View blog
  • Group: Administrators
  • Posts: 12969
  • Joined: 16-May 08


Posted 14 February 2012 - 06:54 PM

You're welcome! :)
Regards,

Michael

Twitter
Facebook
Blog
Yahoo: mwilliams_actuate@yahoo.com
Google: mwilliams.actuate@gmail.com
0

#7 User is offline   siva_birt Icon

  • Junior Member
  • PipPip
  • Group: Members
  • Posts: 28
  • Joined: 08-June 08


Posted 16 February 2012 - 03:02 PM

View Postmwilliams, on 14 February 2012 - 06:54 PM, said:

You're welcome! :)

I modified the code in onCreate to suite my environment. It is working fine in design environment. But when I uploaded these reports to Management Console, following error occured. Need help.
It says report cann't be found. But there is that report.

--------------------------------------------------------------------------------------------------
There are errors evaluating script "importPackage(Packages.org.eclipse.birt.report.engine.api);
var srcStr = reportContext.getReportRunnable().getReportName()+ "";
var srcStr3 = reportContext.getReportRunnable().getReportName()+ "";
var srcStr1 = srcStr.replace(/driver_siva.rptdesign/g,"burst_output.rptdesign");

var re = reportContext.getReportRunnable().getReportEngine();

var des = re.openReportDesign(srcStr1);
var ntask = re.createRunAndRenderTask(des);

ntask.setParameterValue("mname", this.getRowData().getColumnValue(0) );
var options = new PDFRenderOption();
var opf = "OUTPUT/MNO_" + this.getRowData().getColumnValue(0)+ "_" + dt + ".pdf";
var srcStr2 = srcStr3.replace(/driver_siva.rptdesign/g,"");

var outputfile = srcStr2 + opf;
options.setOutputFileName(outputfile);
options.setOutputFormat("pdf");
ntask.setRenderOption(options);
ntask.run();
ntask.close();":
Wrapped org.eclipse.birt.report.engine.api.EngineException: The design file /SIVA/BURSTING/REPORTS/burst_output.rptdesign can not be found. (/report/body/table[@id="2506"]/detail/row[@id="2510"]/method[@name="onCreate"]#8) (Element ID:2510)
-------------------------------------------------------------------------------------------------
0

#8 User is offline   mwilliams Icon

  • BIRT Guru
  • Icon
  • View blog
  • Group: Administrators
  • Posts: 12969
  • Joined: 16-May 08


Posted 17 February 2012 - 10:41 AM

The report is deployed at the path shown? Make sure the report is there and make sure the path is correct.
Regards,

Michael

Twitter
Facebook
Blog
Yahoo: mwilliams_actuate@yahoo.com
Google: mwilliams.actuate@gmail.com
0

#9 User is offline   siva_birt Icon

  • Junior Member
  • PipPip
  • Group: Members
  • Posts: 28
  • Joined: 08-June 08


Posted 17 February 2012 - 01:27 PM

View Postmwilliams, on 17 February 2012 - 10:41 AM, said:

The report is deployed at the path shown? Make sure the report is there and make sure the path is correct.

The path is correct. I placed both driver and burst reports in the same folder. The path picked is 100% correct.
0

#10 User is offline   siva_birt Icon

  • Junior Member
  • PipPip
  • Group: Members
  • Posts: 28
  • Joined: 08-June 08


Posted 18 February 2012 - 04:13 AM

Hi,
Please see the modified report files(same files given in example). Working excellent in Brdpro. But when moved to Management console it says it could not find the detail report. Both report design files are placed in the same folder. Please help.
Thanks...

Attached File(s)


0

#11 User is offline   siva_birt Icon

  • Junior Member
  • PipPip
  • Group: Members
  • Posts: 28
  • Joined: 08-June 08


Posted 20 February 2012 - 06:44 AM

I Placed the detial report on Linux server and tried to run it using driver report on management console. I got the following error.
"Failed to initialize emiiter". Any luck for me?
0

#12 User is offline   mwilliams Icon

  • BIRT Guru
  • Icon
  • View blog
  • Group: Administrators
  • Posts: 12969
  • Joined: 16-May 08


Posted 21 February 2012 - 11:33 AM

Can you try putting in the static path to the report, rather than doing all the replace functions? To see if you can access the report then? Or is that issue solved and it's just the emitter error?
Regards,

Michael

Twitter
Facebook
Blog
Yahoo: mwilliams_actuate@yahoo.com
Google: mwilliams.actuate@gmail.com
0

#13 User is offline   siva_birt Icon

  • Junior Member
  • PipPip
  • Group: Members
  • Posts: 28
  • Joined: 08-June 08


Posted 21 February 2012 - 12:22 PM

View Postmwilliams, on 21 February 2012 - 11:33 AM, said:

Can you try putting in the static path to the report, rather than doing all the replace functions? To see if you can access the report then? Or is that issue solved and it's just the emitter error?

When I gave the static path, the same error repeats.
0

#14 User is offline   mwilliams Icon

  • BIRT Guru
  • Icon
  • View blog
  • Group: Administrators
  • Posts: 12969
  • Joined: 16-May 08


Posted 23 February 2012 - 03:38 PM

Yep. I see what you're saying now. I'll check it out and see if I can find out the issue. It might be some sort of a permissions thing. I'll let you know what I find.
Regards,

Michael

Twitter
Facebook
Blog
Yahoo: mwilliams_actuate@yahoo.com
Google: mwilliams.actuate@gmail.com
0

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users