Thank you for the suggestion! I combined all of the steps into one step to execute SAS within the JCL. I now tried to add 3 input files to same SAS step, processed each input file in a separate data step. I added one PROC PRINTTO and 3 PROC PRINTS within to write the data to the output file. I am still not getting the 3 reports on separate pages. Below sample is how I am doing. Am I doing something wrong? //Step EXEC SAS -input files- Data file1; -Process data- Data file 2; -Process data- Data file3; -Process data- PROC PRINTTO PRINT='file'; PROC PRINT data=file1; -titles, vars- PROC PRINT data=file2; -titles,vars- PROC PRINT data=file3; -titles,vars- PROC PRINTTO; RUN;
... View more