| Date: | Tue, 18 Jul 2006 13:48:05 +0000 |
| Reply-To: | Howard Hagemann <hrhagemann@MSN.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Howard Hagemann <hrhagemann@MSN.COM> |
| Subject: | Removing the header "The SAS System" from PDF output |
| Content-Type: | text/plain; charset="iso-8859-1" |
When I run the following code, I get "The SAS System" header at the top of the page. How can I eliminate this header from my PDF file. It does not show in the listing output.
Code:
ods printer file="c:\sas\newout5.pdf" pdf;
OPTIONS FORMCHAR="|----|+|---+=|-/\<>*" nodate;
proc format;
value $campus
'101' = 'Jones H/S'
'102' = 'Hayes H/S'
'103' = 'Turner H/S';
value $met
'1' = 'Met Std'
'0' = 'Not Met';
value $sex
'M' = 'Male'
'F' = 'Female';
value $ethnic
'1' = 'Native Amer'
'2' = 'Asian'
'3' = 'African'
'4' = 'Hispanic'
'5' = 'White';
data new;
infile datalines;
input campus $ s_code $ met $ sex $ ethnic $ type $;
datalines;
101 S 1 F 1 1
102 S 1 M 2 1
103 S 0 F 3 2
101 S 1 F 4 1
102 S 1 M 5 1
103 S 0 F 3 2
103 S 1 M 4 3
101 S 0 F 5 2
102 S 1 M 3 3
103 S 0 M 1 1
103 S 1 M 4 3
101 S 0 F 2 2
102 S 1 M 3 3
103 S 0 M 1 1
;
data _null_;
set new;
file print;
put @1 campus $campus.
@12 s_code
@15 met $met.
@25 sex $sex.
@33 ethnic $ethnic.
;
run;
ods printer close;
|