Usage Note 23335: How to specify a label for the procedure name in the table of contents created by ODS HTML, RTF, and PDF
The ODS PROCLABEL statement can be used to label the first node in the table of contents created by the CONTENTS= option in the ODS HTML statement. The following code creates this output in the CONTENTS.HTML file:
ods html file='body.html'
contents='contents.html'
frame='frame.html';
ods proclabel 'A new label';
proc print data=sashelp.class;
run;
ods html close;
The ODS PROCLABEL statement also affects the first node in the default table of contents created by ODS PDF and in the table of contents created in the ODS RTF destination when the CONTENTS and TOC_DATA options are specified.
See SAS Notes and Concepts for ODS for more information.
Operating System and Release Information
*
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.
This note illustrates how to specify a label for the procedure name in the table of contents created by ODS HTML, RTF, and PDF.
| Type: | Usage Note |
| Priority: | low |
| Topic: | SAS Reference ==> ODS (Output Delivery System) Third Party ==> Output ==> HTML
|
| Date Modified: | 2011-11-17 11:55:15 |
| Date Created: | 2003-08-07 16:08:44 |