Procedure features: |
PROC PRTDEF statement
options:
|
|
This example
-
adds two printer
definitions
-
modifies a printer definition
-
deletes two printer definitions
|
data printers;
length name $ 80
model $ 80
device $ 8
dest $ 80
opcode $ 3
;
input opcode $& name $& model $& device $& dest $&;
datalines;
add Color PostScript PostScript Level 2 (Color) DISK sasprt.ps
mod LaserJet 5 PCL 5 DISK sasprt.pcl
del Gray PostScript PostScript Level 2 (Gray Scale) DISK sasprt.ps
del test PostScript Level 2 (Color) DISK sasprt.ps
add ColorPS PostScript Level 2 (Color) DISK sasprt.ps
; |
|
proc prtdef data=printers list;
run; |
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.