The SAS guru at my company finally got back to me with the hookup! She said to use an "environment" node to handle everything. In the environment program: options presenv filename env "filepath" lib statements Let statements etc proc presenv permdir=mylib (assuming you created this earlier) sascode=env; run; In each subsequent node you just need to put: filename myenv "filepath for env file above"; %include myenv; the filename in the child nodes need to be different than the master one (myenv vs env) Cheers! Jeff
... View more