baan_ghai
3rd February 2005, 10:22
Hi

How can I print Two Different Report in One Time Session Execution.

Like First Print Detail Report after that Summary Report one bye one.

For summary report User Not Run the session again.

Please Reply As soon as possible

Thanks & Regards

Sanjeev

pconde
3rd February 2005, 12:28
hello,

look at the brp.* functions.
in short: you open the two reports
id1 = brp.open(reportname1, device,...)
id2 = brp.open(reportname2, device,...)
when you have you data for report 1 you send it with brp.ready(id1)
and you call brp.ready(id2) when needed.
at end you close the report with brp.close(idx)

Regards

en@frrom
3rd February 2005, 13:00
If the second is just a summery, then you can also simply make it an after.report layout for instance. Alternatively you could change the report group variables or use the solution pconde suggested. If you're not familiar at all with the Baan programming, don't hesitate to ask for more detail. In that case I would recommend to post a more detailed description of your request.

Good luck!

En