Usage Note 34637: STARTPAGE=NO now prevents graphs from generating a page break in the ODS PRINTER (PCL/PDF/PS) destinations
In previous releases of SAS, the STARTPAGE=NEVER option on the ODS PDF, PCL, and PS statements had be used to prevent a page break from being issued by an image created by a SAS/GRAPH procedure.
Beginning in SAS 9.2, the STARTPAGE=NO option will do the same thing, so the use of STARTPAGE=NEVER is unnecessary. Please see the Full Code tab for an example of using the STARTPAGE=NO option.
Operating System and Release Information
SAS System | Base SAS | z/OS | 9.2 TS1M0 | |
Microsoft® Windows® for 64-Bit Itanium-based Systems | 9.2 TS1M0 | |
Microsoft Windows Server 2003 Datacenter 64-bit Edition | 9.2 TS1M0 | |
Microsoft Windows Server 2003 Enterprise 64-bit Edition | 9.2 TS1M0 | |
Microsoft Windows XP 64-bit Edition | 9.2 TS1M0 | |
Microsoft® Windows® for x64 | 9.2 TS1M0 | |
Microsoft Windows Server 2003 Datacenter Edition | 9.2 TS1M0 | |
Microsoft Windows Server 2003 Enterprise Edition | 9.2 TS1M0 | |
Microsoft Windows Server 2003 Standard Edition | 9.2 TS1M0 | |
Microsoft Windows XP Professional | 9.2 TS1M0 | |
Windows Vista | 9.2 TS1M0 | |
64-bit Enabled AIX | 9.2 TS1M0 | |
64-bit Enabled HP-UX | 9.2 TS1M0 | |
64-bit Enabled Solaris | 9.2 TS1M0 | |
HP-UX IPF | 9.2 TS1M0 | |
Linux | 9.2 TS1M0 | |
Linux for x64 | 9.2 TS1M0 | |
OpenVMS on HP Integrity | 9.2 TS1M0 | |
Solaris for x64 | 9.2 TS1M0 | |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
The sample code places PROC PRINT and PROC GPLOT output on the same PDF page starting in SAS 9.2.
options orientation=portrait nodate nonumber;
title;
ods listing close;
ods pdf file="&sysver..pdf" notoc startpage=no;
proc print data=sashelp.class(obs=5);
run;
goptions reset=all hsize=4 in vsize= 4in vorigin=1in horigin=1in;
proc gplot data=sashelp.class;
plot weight*height;
run;
quit;
ods pdf close;
ods listing;
The STARTPAGE=NO option now prevents graphs from generating a page break in the ODS PRINTER (PCL/PDF/PS) destinations.
Date Modified: | 2009-03-13 11:27:46 |
Date Created: | 2009-01-29 15:48:38 |