I have a prompt that generate a variable across all my project (the SET_ENVIRONMENT macro variable). I then run my programs on by one in my process flow. The only problem is that some of them are local (when I want to upload data), and some of them are remote (using sas metadata server).
A solution would be to run my SET_PROMPT program twice, once on my local, once on my SAS Metadata Server.
I was wondering if it was possible to do set both prompts at the same time?
&SET_ENVIRONMENT.
, say assign it the valueCOOKIE
, and have&SET_ENVIRONMENT=COOKIE
be true in both local and your metadata server? Or it would have two different values (perhapsLOCAL
andREMOTE
)? – Joe