Date: Wed, 13 Feb 2008 11:16:25 -0500
Reply-To: Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Subject: Re: proc printto
On Wed, 13 Feb 2008 09:35:28 -0600, Masuod Pajoh <mpajoh@ODOT.ORG> wrote:
>After writing a PDF file via ODS when I submit:
>
>proc printto file="C:\temp.txt" new; run;
>proc print data=a; run;
>proc printto ; run;
>proc fslist file="C:\temp.txt"; run;
>
>I get:
>
>WARNING: No output destinations active.
>
>in the log after proc print.
>
>How do I correct that?
Did you try it with
PROC PRINTTO PRINT="C:\temp.txt" new; run;
?
|