Usage Note 53122: A SAS® 9.2 program that produces RTF output and fits data, titles, and footnotes on a single page might show pagination differences in later releases
Reports that are routed to the RTF destination in SAS 9.2 might display differences in the amount of space between observations when the same program is used in SAS 9.3 or SAS 9.4. The rows might span across a page and populate a second set of titles and footnotes, whereas the same report in SAS 9.2 fits neatly within the page.
One reason this might occur is because the PADDING style attribute is no longer aliased with the CELLPADDING style attribute after SAS 9.2. If this is the issue that you are running into, a simple change from PADDING to CELLPADDING resolves the issue. Here is an example of making such a change in the template:
style Table from Output /
frame = hsides
rules = groups
padding = 2.5pt
borderspacing = 1pt
borderwidth = .75pt;
|
To change PADDING to CELLPADDING, see below.
style Table from Output /
frame = hsides
rules = groups
cellpadding = 2.5pt /*<======This is the change */
borderspacing = 1pt
borderwidth = .75pt;
|
To view a report affected by this issue, click the Output tab.
Operating System and Release Information
SAS System | N/A | Aster Data nCluster on Linux x64 | 9.3 TS1M0 | |
DB2 Universal Database on AIX | 9.3 TS1M0 | |
DB2 Universal Database on Linux x64 | 9.3 TS1M0 | |
Greenplum on Linux x64 | 9.3 TS1M0 | |
Netezza TwinFin 32bit blade | 9.3 TS1M0 | |
Netezza TwinFin 32-bit SMP Hosts | 9.3 TS1M0 | |
Netezza TwinFin 64-bit S-Blades | 9.3 TS1M0 | |
Netezza TwinFin 64-bit SMP Hosts | 9.3 TS1M0 | |
Teradata on Linux | 9.3 TS1M0 | |
z/OS | 9.3 TS1M0 | |
Z64 | 9.3 TS1M0 | |
Apple Mobile Operating System | 9.3 TS1M0 | |
Microsoft Windows Server 2003 for x64 | 9.3 TS1M0 | |
Microsoft Windows Server 2008 for x64 | 9.3 TS1M0 | |
Microsoft® Windows® for 64-Bit Itanium-based Systems | 9.3 TS1M0 | |
Microsoft Windows Server 2003 Datacenter 64-bit Edition | 9.3 TS1M0 | |
Microsoft Windows Server 2003 Enterprise 64-bit Edition | 9.3 TS1M0 | |
Microsoft Windows XP 64-bit Edition | 9.3 TS1M0 | |
Microsoft® Windows® for x64 | 9.3 TS1M0 | |
Microsoft Windows Server 2003 Datacenter Edition | 9.3 TS1M0 | |
Microsoft Windows Server 2003 Enterprise Edition | 9.3 TS1M0 | |
Microsoft Windows Server 2003 Standard Edition | 9.3 TS1M0 | |
Microsoft Windows Server 2008 | 9.3 TS1M0 | |
Microsoft Windows Server 2008 R2 | 9.3 TS1M0 | |
Microsoft Windows XP Professional | 9.3 TS1M0 | |
Windows 7 Enterprise 32 bit | 9.3 TS1M0 | |
Windows 7 Enterprise x64 | 9.3 TS1M0 | |
Windows 7 Home Premium 32 bit | 9.3 TS1M0 | |
Windows 7 Home Premium x64 | 9.3 TS1M0 | |
Windows 7 Professional 32 bit | 9.3 TS1M0 | |
Windows 7 Professional x64 | 9.3 TS1M0 | |
Windows 7 Ultimate 32 bit | 9.3 TS1M0 | |
Windows 7 Ultimate x64 | 9.3 TS1M0 | |
Windows Vista | 9.3 TS1M0 | |
Windows Vista for x64 | 9.3 TS1M0 | |
64-bit Enabled AIX | 9.3 TS1M0 | |
64-bit Enabled HP-UX | 9.3 TS1M0 | |
64-bit Enabled Solaris | 9.3 TS1M0 | |
HP-UX IPF | 9.3 TS1M0 | |
Linux | 9.3 TS1M0 | |
Linux for x64 | 9.3 TS1M0 | |
Linux on Itanium | 9.3 TS1M0 | |
Solaris for x64 | 9.3 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.
When the PADDING style attribute is used in PROC REPORT or PROC TEMPLATE code, the results can be
different depending on the SAS release.
Pagination differences might occur in the RTF destination if the TEMPLATE or REPORT procedure code modifies the PADDING style attribute. Substituting CELLPADDING for PADDING in the SAS® 9.3 or SAS® 9.4 program resolves this issue.
Date Modified: | 2014-07-15 11:09:50 |
Date Created: | 2014-06-03 15:50:14 |