Hi SAS Experts, I try to run mutliple SAS programs in a Batch after each other and Re-Use all the results from the previous executed programs. Why: I start with an EGP Project, nicely ordering the code in diffrent programs, and then export everything to *.sas files to get a batch ready enviroment. To run the diffrent programs I created a SAS macro, in the hope it will keep the Session, unfortiantly, it doestn seems to work: run.sas : %let basepath = /srv/sas/projects/cirun/fwd; %let projectname = /myprojectfiles/; run; %include "&basepath.&projectname.build/00a_init.sas"; run; %include "&basepath.&projectname.build/01a_load_akq.sas"; run; ...and ongoing... Any Ideas? Regards, Tobi
... View more