Date: Fri, 16 Aug 2002 09:56:37 -0400
Reply-To: "Fehd, Ronald J. (PHPPO)" <rjf2@CDC.GOV>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Fehd, Ronald J. (PHPPO)" <rjf2@CDC.GOV>
Subject: Re: printer settings?
Content-Type: text/plain; charset="iso-8859-1"
> From: Arjen Raateland [mailto:arjen.raateland@YMPARISTO.FI]
> Would anybody happen to know where I may find the information about
> changing less obvious printer settings?
;/*vSQLoptions search options for keyword in name and description
RJF2 02Jun04
PROC SQL;describe table DICTIONARY.options;QUIT;
optname char(32) label='Option Name',
setting char(1024) label='Option Setting',
optdesc char(160) label='Option Description',
level char(8) label='Option Location'
/* *** */
%LET WORD = 0.0;
%*LET WORD = dms;%*;
%*LET WORD = LOGIC;%*MLOGICNEST MPRINTNEST;
%LET WORD = MACRO;
%*LET WORD = NEST;
%*LET WORD = margin;%*BOTTOMMARGIN LEFTMARGIN RIGHTMARGIN TOPMARGIN;
%LET WORD = PRINT;%*;
%LET WORD = %UPCASE(&WORD.);
title2 "DICTIONARY.OPTIONS: occurences of <&WORD.>";
proc SQL;select OptName
,tranwrd(OptDesc,lowcase("&WORD."),"&WORD.")
,Setting
from DICTIONARY.OPTIONS
where index(upcase(OptName),"&WORD.")
or index(upcase(Setting),"&WORD.")
or index(upcase(OptDesc),"&WORD.")
;quit;
/* *** */
%SYMDEL SQLOBS SQLOOPS SQLXOBS SQLRC;
Ron Fehd the SQL into:macro maven CDC Atlanta GA USA RJF2@cdc.gov
|