Usage Note 23433: In ODS HTML output, how can I label the procedure name in the table of pages?
Use the same method as for the table of contents. Issue the ODS PROCLABEL statement before the procedure or DATA step.
ods html body='temp.html';
ods proclabel "a new label";
proc print data=sashelp.class;
run;
ods html close;
See also the full PROC TEMPLATE FAQ and Concepts.
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.
| Type: | Usage Note |
| Priority: | low |
| Topic: | SAS Reference ==> ODS (Output Delivery System) Third Party ==> Output ==> HTML
|
| Date Modified: | 2003-10-24 10:25:50 |
| Date Created: | 2003-09-30 11:01:53 |