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