ken bohnenkamp
25th May 2016, 18:37
I would like to only print the first page of a report. Is there a way to do this ?
shah_bs
25th May 2016, 23:41
In the Device Selection screen, the default for the From Page is 1 and To Page is 9999.
You can change the To Page to 1 to print only the first page.
Note however that the ENTIRE report will still be created (which you will lose as soon as the 1 page is printed.)
ken bohnenkamp
26th May 2016, 14:40
Unfortunately, I am printing to a PDF output file so it won't allow me to pick a page range. I thought there might be an easy way to do it in the report script using some predefined variables.
Ajesh
26th May 2016, 17:44
What you can do is, go to the eaxh report layout and in the Print condition mention.
lattr.pageno= 1
That way the layout will only get printed if it is the first page.
ken bohnenkamp
26th May 2016, 17:49
That worked. Thanks for you help.