Set the SAS system options, create the ODS document MyDocument, and open the DOCUMENT destination. The NODATE option suppresses the display of the date and time in the output. The NONUMBER option suppresses the printing of page numbers. The ODS DOCUMENT statement with the NAME= option specified opens the ODS document MyDocument and provides Write access as well as Read access. Note that by default MyDocument will be created in the WORK library. Assign a libref to create MyDocument in a permanent library.


options nodate nonumber;
ods document name=mydocument(write);