@fbm wrote:
How do I make sure that I am not overwriting the original version in SAShelp.tmplstat?
Thanks
You set a path to a store that is elsewhere such as:
ods path sasuser.template(update) sashelp.tmplmst(read);
This creates a custom store for you in the SASUSER library with write and delete ability (the update) and says you are going to read onlyfrom the sashelp.tmplmst.
Then something like
proc template;
edit Stat.Lifetest.ProductLimitEstimates;
edit h1;
text= "whatever";
end;
end;
run;
... View more