Previous Page | Next Page

The PRTDEF Procedure

Example 3: Creating a Single Printer Definition That Is Available to All Users


Procedure features:

PROC PRTDEF statement option:

DATA=

USESASHELP


This example creates a definition for a Tektronix Phaser 780 printer with a Ghostview print previewer with the following specifications:


Program

 Note about code
data tek780;
   name = "Tek780";
   desc = "Test Lab Phaser 780P";
   model = "Tek Phaser 780 Plus";
   device = "PRINTER";
   dest = "testlab3";
   preview = "Ghostview";
   units = "cm";
   bottom = 2.5;
   fontsize = 14;
   papersiz = "ISO A4";
run;
 Note about code
proc prtdef data=tek780 usesashelp;
run;

Previous Page | Next Page | Top of Page