Date: Wed, 4 Jul 2007 03:12:34 -0400
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 PRINT running
I'm not sure, maybe there is a option to prevent the OUTPUT window from
pausing the program. But I don't think so. A DM statement would not be the
solution. I don't think that this is possible in PROC PRINT, and after
that it is too late.
Do you have FSP? In that case you could do something like:
proc printto print="p:\test.out";
run;
proc print data=a;
run;
proc printto;
run;
proc fslist file="p:\test.out";
run;
Gerhard
On Tue, 3 Jul 2007 19:48:37 -0700, Phil <phillip.anderra@GMAIL.COM> wrote:
>On Jul 4, 11:54 am, datan...@GMAIL.COM ("data _null_;") wrote:
>
>
>I do end with a "run;"
>
>
>> try submitting
>>
>> run;
>>
>> that should end the proc print.
>>
>> good to end most SAS steps with RUN or QUIT depending on the
>> procedure. Some have "RUN GROUP" processing. Like REG GLM GPLOT PLAN
>> many others. They end with QUIT.
>>
>> On 7/3/07, Phil <phillip.ande...@gmail.com> wrote:
>>
>> > A flummoxed SAS 9.1 user writes:
>>
>> > It started off with a simple desire to have output in the Output
>> > Window starting at the top rather than the bottom. After experimenting
>> > with assorted Options, DM commands, Autopop etc I still can't do this.
>> > Things have actually got worse. Now, whenever I sub a job that
>> > produces more than one page of output the Output window will list only
>> > one page and the Editor window header displays "PROC PRINT running".
>> > To complete the job I have to activate the Output window and then hold
>> > down the Page Down key until it reaches the end of the output. Or just
>> > cancel it.
>>
>> > Any help much appreciated.
>>
>> > Phil
|