
run;
quit;
proc document name=class;
dir \Contents#1\DataSet#1;
run;
obstitle Attributes#1 'Subtitle Specified by the OBSTITLE Statement';
run;
quit;
proc document name=class;
note addnote 'Note added to the document';
run;
quit;
ods html file='your_file.html' style=Sapphire;
proc document name=class;
obpage \Contents#1\DataSet#1\Variables#1;
replay;
run;
quit;
proc document name=class;
list/ levels=all details;
dir \Contents#1\DataSet#1;
obanote Attributes#1 show;
obbnote Attributes#1 show;
obfootn Variables#1 show;
obstitle Attributes#1 show;
obtitle Attributes#1 show;
run;
quit;
ods html close;
Program Description
Set the SAS system options. The NODATE ...