No. of copies

I am printing a second report from a primary report, using the r.run function to call the second report. The problem is that I would like to designate the No. of Copies on the Request Form of the first report so that the second report can use it to print the number of desired report. Does anyone have a solution to this. Tkx Edited by - mcotpti on 2002 Mar 04 22:44:02

This question is not specifically NAD related, so topic moved to Attain/Financials Development.

hmmmm… I may be wrong and this solution may be a bit curde but here it is: You could use a loop and print the report any number of times. WHILE i <= 10 DO BEGIN REPORT.RUN(50000,FALSE,TRUE,Rec); i := i + 1; END NGP NCSD

Hello, or just have a look at the recent post on how to call reports with parameters… http://www.navision.net/forum/topic.asp?TOPIC_ID=3284&FORUM_ID=9&CAT_ID=3&Topic_Title=Requestform+variables&Forum_Title=Attain%2FFinancials+%2D+Developer+Forum instead of the date parameter, you can just use the number of copies as parameter. Saludos Nils