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

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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