BookmarkSubscribeRSS Feed
deleted_user
Not applicable
When running a stored process, our code needs to be able to determine the full path of the code submitted by the stored process.

You can use the following when running SAS in batch mode:

%put %sysget(SAS_EXECFILEPATH);

Does anyone know of a similar function that would work for Stored Processes in Enterprise Guide?

Thanks
4 REPLIES 4
Cynthia_sas
Diamond | Level 26
Hi:
On this web site, refer to the explanation of the _PROGRAM reserved macro variable:
http://support.sas.com/rnd/itech/doc9/dev_guide/stprocess/reserved.html

You may have to change some of your program logic because the path that can be part of the returned value of &_PROGRAM is the metadata repository path ... not the operating system path where the stored process is stored.

cynthia
deleted_user
Not applicable
Thanks very much for the suggestion. The _Program macro variable doesn't seem to be getting generated when we run the stored process:

WARNING: Apparent symbolic reference _PROGRAM not resolved.

Any suggestions?
Cynthia_sas
Diamond | Level 26
This is probably a question for Tech Support then. I know that sometimes the reserved macro variables are available on all clients and then sometimes, they're not created or used by a particular client. So you could call that stored process from one client and &_PROGRAM would be available to your program but from another client, it would not be available because you client does not use or surface that macro variable. If &_PROGRAM is not available for your usage situation, it's possible that Tech Support knows of a workaround for you.

To contact Tech Support, go to:
http://support.sas.com/techsup/contact/submit_emits2.html

cynthia
JohnB
SAS Employee

 

If you are using SAS® Enterprise Guide® or SAS® Studio, the macro variable _SASPROGRAMFILE can be used. This macro variable returns the full path and filename of the SAS program that is currently being run. This macro variable is available only for SAS program files that are saved on the same server on which your SAS Studio code or SAS Enterprise Guide session is running. For example:

 

 

%put &_SASPROGRAMFILE;

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 4 replies
  • 5961 views
  • 2 likes
  • 3 in conversation