This example saves the current system option settings using the OPTSAVE procedure,
modifies the YEARCUTOFF system option, and then loads the original set of system
options.
Program
libname mysas "c:\mysas";
proc options option=yearcutoff;
run;
proc optsave out=mysas.options;
run;
options yearcutoff=2000;
proc options option=yearcutoff;
run;
proc optload data=mysas.options;
run;
proc options option=yearcutoff;
run;
Program Description
These statements and procedures were submitted one at a time and not run as a SAS
program to allow the display of the YEARCUTOFF ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month, and much more.