Hi All
In SAS example /Products/SAS Intelligence Platform/Samples/Sample: Shoe Sales by Region code:
%let _ODSOPTIONS=%str(body=region1.html newfile=table);
%STPBEGIN;
proc report data=work.shoes nowd;
column region subsidiary product sales inventory returns;
define region / order noprint "Region";
define subsidiary / order "Subsidiary";
define product / order "Shoe Style";
define sales / sum "Sales";
define inventory / sum "Inventory";
define returns / sum "Returns";
break after subsidiary / summarize suppress style=Header;
break before region / page ;
compute before _page_ / center style=BeforeCaption;
line "Men's and Women's Shoe Sales Figures for " region $25.;
endcomp;
run;
*;
* Use STPEND to close the HTML output destination so that ODS will
* write the appropriate HTML to mark the end of the documents that
* have been created.
*;
%STPEND;
enables creating html files referred by links for each region.
My question is: when I try to create large number of files (let's say 1000) the first redirection from clicked link in SASPortal takes for example 10-20 second. And then every next navigation between links takes 1-3 seconds (seems like in a meantime some caching or optimalization was made). Is there any solution to force quick file searching (caching) in such case, not to wait longer for the first time ?
Best Regards
Norbert
Hi Cynthia
Thank you for your time. I will try to tackle this problem with TechSupport then.
Best Regards
Norbert
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.