Hi,
I am running %ProvideSurvivalMacros and %CompileSurvivalTemplate. After I renew the license, it does not work now. I paste information regarding my system and errors/warning encountered. I appreciate any advice and resolution in advance. Thanks.
SAS (r) Proprietary Software 9.4 (TS1M5)
NOTE: Updated analytical products:
SAS/STAT 14.3
SAS/IML 14.3
Questions:
data _null_;
%let url = //support.sas.com/documentation/onlinedoc/stat/ex_code/143;
infile "http:&url/templft.html" device=url;
file 'macros.tmp';
retain pre 0;
input;
_infile_ = tranwrd(_infile_, '&', '&');
_infile_ = tranwrd(_infile_, '<' , '<');
if index(_infile_, '</pre>') then pre = 0;
if pre then put _infile_;
if index(_infile_, '<pre>') then pre = 1;
run;
%inc 'macros.tmp' / nosource;
%ProvideSurvivalMacros
-
WARNING: Apparent invocation of macro PROVIDESURVIVALMACROS not resolved.
ERROR 180-322: Statement is not valid or it is used out of proper order.
... View more