Add a note to the document.
-
The NOTE statement adds a note object named ADDNOTE to the ODS
document.
-
The NAME= option specifies the current ODS document.
-
The LIST statement with the LEVELS=ALL option
shows a list of entries in the Class document.
-
The QUIT statement terminates PROC DOCUMENT.
proc document name=class;
note addnote 'Note added to the document';
list /levels=all;
run;
quit;