Is it possible to create customised dropdown menus in EG? ie I would like to present a user with a list of dropdowns, and the ability to click a 'submit' button that would use the values of those dropdowns to run a SAS macro...
Also, is this possible without setting up a stored process?
...
How do I view the file below in Enterprise Guide (v 4.1 ) ??
%let libWORK=%sysfunc(pathname(WORK)); * work lib is on UNIX ;
data _null_;
file "&libWORK./MYFILE.htm";
put '<html>' /
' <head>'/
' <title> A Title </title>'/
'</head> <body> some content </body> </html>';
run;
...
When I open a SAS file in enterprise guide and run it, it is executed on the server. The source file itself is located either on the production site or the development site. In both cases, it is executed the same server however. I want to be able to tell my script to store results in a relative folder. But if I write something like
lib...