Hi guys, I have a stored process that takes several min to complete. I found a paper (http://support.sas.com/kb/26/181.html) that describes how to display a "Please Wait" message while the stored proc runs. That works great! My issue is that the output of my stored proc is an Excel workbook generated with the ExcelXP tagset, not HTML. Using the linked sample results in the modified headers being ignored and my results are sent to HTML, not Excel. Is there any way to display a "Please Wait" message while the stored proc is running, then use the headers to open a "Open/Save As" box for Excel?
Hello Frank,
I have the same issue. Did you find the solution for that?
Lokraj
I found this post from @boemskatsvery helpful:
And discussed more in this thread:
My implementation of this is something like:
1. Have a stored process that produces an the Excel file (or whatever) and writes it to some temp space on the SAS server.
2. That server returns an html page which has the please wait message and and iframe.
3. The iframe invokes a second stored process (StreamResults) via URL which streams the Excel file back to the browser.
So basically, as I understand it, a browser cannot get receive both an html file and an excel file in one request from a web server, because you only have one header to define the content as html or excel. So the workaround is to have the stored proces return an html file, and then that html file can invoke a second stored process (in an iframe) which delivers the excel file.
It takes a bit of work to set up, but it's been working well for me.
Hope that helps.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Lock in the best rate now before the price increases on April 1.
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.