BookmarkSubscribeRSS Feed
TedP
Obsidian | Level 7

I have a table I created from a stored process that outputs to html via ods. Attached to the html are two buttons (one for downloading the table as pdf and the other excel).

 

I am looking for a way to query the data once and somehow save the pdf/excel output until the user clicks the pdf/excel button. My current solution is to query the data twice - once on page load to show the HTML table and again in a separate stored process when the user clicks the pdf/excel button.

 

Basically I want to generate the pdf and excel downloadable documents on initial page load but don't give them to the user until button click.

 

Here is some pseudo code using some jquery.

 

proc sql;
    some query
quit;

ods html body=_webout ;

ods html text="<script>
					$('#printPDF').click(function(){
                                           Requery data in a separate stored process
					});

                                       $('#printExcel').click(function(){
                                           Requery data in a separate stored process
					});
				 </script>
			<button id='printPDF'>Print PDF</button>
	 		<button id='printExcel'>Print Excel</button>";

/* output html table */
proc report 
	data=mydata;
run;

 

2 REPLIES 2

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1179 views
  • 0 likes
  • 3 in conversation