If I'm running on a SAS GRID and I have 3 active sessions, is there a way or a macro to delete a macro variable in all the session?
I mean, if I have this code in my program:
%let myMacrVar=1;
signon sess1;
rsubmit sess1 wait=n;
%symdel myMacrVar; *delete macro variable in sess1;
........
endrsubmit;
I want something that delete myMacrVar in parent session too. Does it exist?
Thank you in advance!!