BookmarkSubscribeRSS Feed
samira
Obsidian | Level 7

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: 

 

 

Untitled.png

 

I am very new in sas. I would really be appriciated if someone helps me!

2 REPLIES 2
Shmuel
Garnet | Level 18

add at the beginnig of the code the next statement:

 

FILENAME _WEBOUT URL ' ... enter here a URL to your web file ...';

 

VasilijNevlev
Quartz | Level 8

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

=======================================
For more information about {An}alytium, visit https://www.analytium.co.uk

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
  • 2411 views
  • 0 likes
  • 3 in conversation