October 2009
Beginner
636 pages
13h 35m
English
Using the document store we created in the first example, we can replay its content in different destinations using either PROC DOCUMENT or pop-up menus. The following PROC DOCUMENT program replays the document store to the four destinations that are open when PROC DOCUMENT executes. The four destinations are PDF, RTF, HTML, and LISTING.
The partial listing output from this step is shown in Figure 11.6, along with the Results window view of the REPLAY.
ODS PDF FILE='ReplayDoc.pdf';
ODS RTF FILE='ReplayDoc.rtf';
ODS HTML FILE='ReplayDoc.html';
ODS LISTING;
proc document name=work.origdoc;
replay;
run;
quit;
ODS _ALL_ CLOSE;
You can also replay the document using pop-up menus. Right-click ...
Read now
Unlock full access