Ntp, that is a better question to answer you have several options. 1/ Isolate the SAS-code that does the reporting and run that as one job. You could use %include statements for calling the SAS sources like being modules/objects. Disadvantages: - more work on the SAS-code design - no archived cache of every results Advantages: - When the original data refresh-rate is high (several changes within a day) this approach is able to follow that. - can be run also outside Eguide. (portal Amo batch or whatever) 2/ Use the ODS document features. Base SAS: ODS, PROC TEMPLATE, and ODS DOCUMENT from Scratch, use proc document replay to compe your desired result Disadvantages: - more work on the SAS-code design - planning on generating the cached docs needed Advantages: - cached results available. - storing displaying data/result as supported by ODS - can be run also outside Eguide. (portal Amo batch or whatever) 3/ Use the EGuide conbine results option. The link nrose has given. Disadvantages: - Only available to run with Eguide. It will be kept as a manual process Advantages: - Very quick to be build. Showing the first results. - results can be transformed later in a ODS approach as mentioned with /2
... View more