Date: Tue, 22 Jul 2008 11:35:39 -0400
Reply-To: "Fehd, Ronald J. (CDC/CCHIS/NCPHI)" <rjf2@CDC.GOV>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Fehd, Ronald J. (CDC/CCHIS/NCPHI)" <rjf2@CDC.GOV>
Subject: Re: Option to increase the width of the Log
In-Reply-To: <c2192a610807220832tfc52345l29145d7435536cc6@mail.gmail.com>
Content-Type: text/plain; charset=us-ascii
SAS_learner:
as far as I know there are not separate linesize options for log and
print.
options is a global statement so it applies,
immediately,
to the step where it is used.
Ron
________________________________
From: SAS_learner [mailto:proccontents@gmail.com]
Sent: Tuesday, July 22, 2008 11:32 AM
To: Fehd, Ronald J. (CDC/CCHIS/NCPHI)
Cc: SAS-L@listserv.uga.edu
Subject: Re: Option to increase the width of the Log
Hello Ronald,
Thanks for the Option it is what I am looking for , but as you
said it is messing up my Output too is there a way to limit options
linesize = max; Just to Log
I am using Proc Printto to Print my Log , Or If there is way
to Overwrite the global Linezine options to normal line when my proc
compare starts , My Program is has follow
%include setup ;<--- This has all the Libraries and template
Program here is where Proc Printto log = c:\temp.log is included then ;
data .................;
.
.
.
Proc compare data = a compare = b ; Run;
Proc Report and Proc Compare report where I compare here the
defalut Proc compare is getting messed up .
thanks for the help
On Mon, Jul 21, 2008 at 4:56 PM, Fehd, Ronald J.
(CDC/CCHIS/NCPHI) <rjf2@cdc.gov> wrote:
> From: SAS_learner
>
> Just not sure how to frame my question,
>
> What I am doing is make LOG Report (ERRORS WARNINGS)
. Now If I have
> warning say
>
> WARNING: Use of CELLWIDTH/OUTPUTWIDTH= in a spanning
header
> or footer will
> rarely yield expected results. For conventional usage,
specify
> outputwidth only for the data column cells.
>
> The above message is printed in three different lines
and
> when I need to
> pick them for my report I am having a problem .
>
> But is there an option to increase the default width
of the
> Log where it would make it has one long line
>
> Thank all for the help
> SL
options linesize = max;
but that applies to log and print
PROC Options define value option = linesize;
PROC Options define value option = ovp;*OverPrint Errors
and Warnings;
ovp is a command-line option
you have to add it to your SASv9.cfg:
-noovp
Peter Crawford both wonder why the Windows default
setting of ovp is
still ovp
and not noovp
Note this option was used to OverPrint a line twice more
on a dot-matrix
or other types of impact printers
which resulted in the line appearing as bold.
Ron Fehd the macro maven CDC Atlanta GA USA RJF2 at
cdc dot gov