Previous Page | Next Page

The PRTEXP Procedure

Example 2: Writing Attributes to a SAS Data Set


Procedure Features:

PROC PRTEXP statement option:

OUT= option

SELECT statement


This example shows you how to create a SAS data set that contains the data that PROC PRTDEF would use to define the printers PCL4, PCL5, PCL5E, and PCLC.


Program

 Note about code
proc prtexp out=PRDVTER;
select pcl4 pcl5 pcl5e pcl5c;
run;

Previous Page | Next Page | Top of Page