I want to create a simple web page that uses an AJAX call to get json type data from a SAS program and returns the data to the web page.
I want to run a very simple sas stored process:
proc json out=_webout;
export sashelp.class (where=(age=11)) / nokeys nosastags;
run;
but I got an error when I want to run this stored process, here is my log:
I am very new in sas. I would really be appriciated if someone helps me!
add at the beginnig of the code the next statement:
FILENAME _WEBOUT URL ' ... enter here a URL to your web file ...';
Hi Samira,
_webout is a reserved filename used by stored procedure server to send the data back to web server which in turn sends it to your browser.
I can see you are executing your code on PC SAS. Try creating a stored procedure instead and run that stored procedure in your browser. Let me know here if you need help creating a stored procedure.
Regards,
Vasilij
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.