Previous Page | Next Page

The PRTDEF Procedure

Example 2: Creating a Ghostview Printer in SASUSER to Preview PostScript Printer Output in SASUSER


Procedure features:

PROC PRTDEF statement options:

DATA=

LIST

REPLACE


This example creates a Ghostview printer definition in the SASUSER library for previewing PostScript output.


Program

 Note about code
data gsview; 
name = "Ghostview"; 
desc = "Print Preview with Ghostview"; 
model= "PostScript Level 2 (Color)"; 
viewer = 'ghostview %s'; 
device = "Dummy";
dest = " ";
 Note about code
proc prtdef data=gsview list replace;
run;

Previous Page | Next Page | Top of Page