Problem Note 43509: DATA _NULL_ table might not show footer text on every page of PDF output
If a table written using PROC TEMPLATE and DATA _NULL_ includes footer text, the text might not appear on every page of output in the PDF destination. The footer information is not processed until the table is read in completely. Adding the UNIFORM option writes the footer on every page of output.
The following code provides an example. Running the code without the UNIFORM option replicates the undesired behavior of the missing footer.
data failed;
do testname=1 to 120;
output;
end;
run;
title;
footnote;
ods listing close;
proc template;
define table summary;
notes "Standard Table";
FOOTER_SPACE= 50;
define footer tail;
text
"Footer text" ;
style=standardfootcell;
end;
end;
run;
ods pdf file="footnotetest.pdf" uniform;
data _null_;
set work.failed;
file print ods=(template="summary"
columns=(header=testname(generic=on)));
put _ods_;
run;
ods pdf close;
ods listing;
Operating System and Release Information
SAS System | Base SAS | z/OS | 9.2 TS2M3 | 9.4 TS1M0 |
Microsoft® Windows® for 64-Bit Itanium-based Systems | 9.2 TS2M3 | 9.4 TS1M0 |
Microsoft Windows Server 2003 Datacenter 64-bit Edition | 9.2 TS2M3 | 9.4 TS1M0 |
Microsoft Windows Server 2003 Enterprise 64-bit Edition | 9.2 TS2M3 | 9.4 TS1M0 |
Microsoft Windows XP 64-bit Edition | 9.2 TS2M3 | 9.4 TS1M0 |
Microsoft® Windows® for x64 | 9.2 TS2M3 | 9.4 TS1M0 |
Microsoft Windows Server 2003 Datacenter Edition | 9.2 TS2M3 | 9.4 TS1M0 |
Microsoft Windows Server 2003 Enterprise Edition | 9.2 TS2M3 | 9.4 TS1M0 |
Microsoft Windows Server 2003 Standard Edition | 9.2 TS2M3 | 9.4 TS1M0 |
Microsoft Windows Server 2003 for x64 | 9.2 TS2M3 | 9.4 TS1M0 |
Microsoft Windows Server 2008 | 9.2 TS2M3 | 9.4 TS1M0 |
Microsoft Windows Server 2008 for x64 | 9.2 TS2M3 | 9.4 TS1M0 |
Microsoft Windows XP Professional | 9.2 TS2M3 | 9.4 TS1M0 |
Windows 7 Enterprise 32 bit | 9.2 TS2M3 | |
Windows 7 Enterprise x64 | 9.2 TS2M3 | |
Windows 7 Home Premium 32 bit | 9.2 TS2M3 | |
Windows 7 Home Premium x64 | 9.2 TS2M3 | |
Windows 7 Professional 32 bit | 9.2 TS2M3 | |
Windows 7 Professional x64 | 9.2 TS2M3 | |
Windows 7 Ultimate 32 bit | 9.2 TS2M3 | |
Windows 7 Ultimate x64 | 9.2 TS2M3 | |
Windows Vista | 9.2 TS2M3 | 9.4 TS1M0 |
Windows Vista for x64 | 9.2 TS2M3 | 9.4 TS1M0 |
64-bit Enabled AIX | 9.2 TS2M3 | 9.4 TS1M0 |
64-bit Enabled HP-UX | 9.2 TS2M3 | 9.4 TS1M0 |
64-bit Enabled Solaris | 9.2 TS2M3 | 9.4 TS1M0 |
HP-UX IPF | 9.2 TS2M3 | 9.4 TS1M0 |
Linux | 9.2 TS2M3 | 9.4 TS1M0 |
Linux for x64 | 9.2 TS2M3 | 9.4 TS1M0 |
OpenVMS on HP Integrity | 9.2 TS2M3 | 9.4 TS1M0 |
Solaris for x64 | 9.2 TS2M3 | 9.4 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.
Type: | Problem Note |
Priority: | medium |
Date Modified: | 2011-06-20 14:26:10 |
Date Created: | 2011-06-13 12:04:02 |