Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
%let SVCDATE1='2002-11-01';
data _null_;
y = substr ("&SVCDATE1.", 2, 4);
m = substr ("&SVCDATE1.", 7, 2);
call symput ("RSVCDATE1", trim(y) || m);
run;
%put &RSVCDATE1.;
call symput ("RSVCDATE1","'"||trim(y)||trim(m)||"'");