BookmarkSubscribeRSS Feed
Pramod_R
Calcite | Level 5
Hi,

I was trying to use the prompts while running a code which was "grid enabled".

When I say Grid enabled, that means that I have enabled "Insert Custom SAS code before submitted Code" and added the below code.

options metaserver='metadata-server-address';
options metaport=metadata-server-port;;
%let rc=%sysfunc(grdsvc_enable(_all_,resource=SASApp));
signon task1;
rsubmit;

And also added a custom code to be run after the sumbitted the code as given below:

endrsubmit;
signoff;

The problem that i'm encounteriing while running the codes with prompts, is that the macro variable that gets assigned in the beginning of the code (eg: %LET name = Mary;) at the EG end, would not get carried to the server where the actual code gets run in the grid enviroinment.

So my code doesn't have a value for the macro variable name and throws up the error saying:
WARNING: Apparent symbolic reference NAME not resolved.

This however runs fine when I'm running the code without the grid enablement.

Hope my question is clear.

Thanks in Advance
Pramod
1 REPLY 1
mgst170
SAS Employee
Hi Pramod,

You need to send the macros to your Grid session using a %syslput of the macro var after your signon....

If this is from EG, the pre/post code should have statements to send all your macro vars to the Grid session.

Cheers. Message was edited by: mgst170

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!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 1 reply
  • 871 views
  • 0 likes
  • 2 in conversation