- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
using EG on server...I've checked to make that it is pointing to the server
if I cut and paste the code into code window it works fine...
TIA
- Matthew
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
EG Stored Processes vs Autocall Macros?
- Matthew
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi Matthew,
May I know how you do it? I can't see the data in my work library either, when I run stored process.
Thanks,
Hui
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Not sure what Matthew means by changing it to a macro.
As I understand it, when you execute a stored process from EG (or elsewhere) it runs on a server, and has it's own WORK library. It does not use the same work library as the EG session. See for example.:
https://communities.sas.com/message/8585#8585
I suppose it's possible that in your EG session you could find the physical path to the work directory:
%put %sysfunc(pathname(work));
And then you could pass that as a parameter when you invoke the stored process. But that would feel like a kludge. Probably better to just put whatever data you want the stored process to see in a permanent directory that the stored process can see.
--Q.
Next webinar will be in January 2025. Until then, check out our archives: https://www.basug.org/videos. And be sure to subscribe to our our email list.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thanks Quetin.