Usage Note 12661: FOOTNOTE text written to OUTPUT window when ODS LISTING CLOSE specified
When BATCH procedures such as CALENDAR, CHART, COMPARE, FORMAT, FORMS,
PLOT, or TIMEPLOT are used in conjuntion with the ODS LISTING CLOSE
statement, footnotes are included in the LISTING destination. The
output from the procedures is omitted correctly, leaving only the
footnotes from the procedure in the output window.
The code below shows a workaround for the Windows and Unix platforms,
using the reserved "nul" (Windows) and "/dev/null" (UNIX).
On other platforms, the file created with file= will need to be deleted
using system specific commands.
/* workaround on Windows */
ods listing file="nul";
/* workaround on UNIX */
ods listing file="/dev/null";
proc chart data=sashelp.class;
vbar age;
footnote 'this should not be here';
run;
quit;
Operating System and Release Information
| SAS System | Base SAS | Microsoft Windows 95/98 | 8.2 TS2M0 | |
| Microsoft Windows NT Workstation | 8.2 TS2M0 | |
| Microsoft Windows XP Professional | 8.2 TS2M0 | |
| Windows Millennium Edition (Me) | 8.2 TS2M0 | |
| Microsoft® Windows® for 64-Bit Itanium-based Systems | 9 TS M0 | |
| Microsoft Windows Server 2003 Enterprise Edition | 8.2 TS2M0 | |
| Microsoft Windows Server 2003 Standard Edition | 8.2 TS2M0 | |
| Microsoft Windows Server 2003 Datacenter Edition | 8.2 TS2M0 | |
| Microsoft Windows 2000 Professional | 8.2 TS2M0 | |
| Microsoft Windows 2000 Server | 8.2 TS2M0 | |
| Microsoft Windows 2000 Advanced Server | 8.2 TS2M0 | |
| Microsoft Windows 2000 Datacenter Server | 8.2 TS2M0 | |
| Solaris | 8.2 TS2M0 | |
| OpenVMS VAX | 8.2 TS2M0 | |
| IRIX | 8.2 TS2M0 | |
| 64-bit Enabled Solaris | 8.2 TS2M0 | |
| OS/2 | 8.2 TS2M0 | |
| Linux | 8.2 TS2M0 | |
| z/OS | 8.2 TS2M0 | |
| ABI+ for Intel Architecture | 8.2 TS2M0 | |
| HP-UX | 8.2 TS2M0 | |
| CMS | 8.2 TS2M0 | |
| HP-UX IPF | 9 TS M0 | |
| 64-bit Enabled HP-UX | 8.2 TS2M0 | |
| OpenVMS Alpha | 8.2 TS2M0 | |
| 64-bit Enabled AIX | 8.2 TS2M0 | |
| Tru64 UNIX | 8.2 TS2M0 | |
| AIX | 8.2 TS2M0 | |
*
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: | Usage Note |
| Priority: | |
| Topic: | SAS Reference ==> ODS (Output Delivery System)
|
| Date Modified: | 2004-07-07 15:14:41 |
| Date Created: | 2004-06-21 15:31:21 |