Hi:
You can fix the device issue by using an explicit DEVICE= specification after the RESET=ALL (or I believe it might also work if you moved the GOPTIONS statement BEFORE the ODS PDF statement):
[pre]
goptions reset=all device=sasprtc htitle=1;
[/pre]
However, I ran my code in SAS 9.2, Phase 2 release and did not get an ERROR message or warning in the LOG:
[pre]
4326 ods _all_ close;
4327
4328 %put &sysvlong;
9.02.02M2P090109
4329
4330 options orientation=landscape topmargin=.5in
4330! bottommargin=.5in leftmargin=.5in rightmargin=.5in;
4331 ods pdf file='c:\temp\PlotBRet2.pdf' columns=2;
NOTE: Writing ODS PDF output to DISK destination
"c:\temp\PlotBRet2.pdf", printer "PDF".
4332
4333 GOPTIONS reset=all htitle=1;
4334
4335 /* symbols defs skipped for pasting */
4336
4337 Legend1 FRAME;
4338 Axis1 STYLE=1 WIDTH=1 MINOR=NONE;
4339 Axis2 STYLE=1 WIDTH=1 MINOR=NONE;
4340 Axis3 STYLE=1 WIDTH=1 MINOR=NONE;
4341
4342 TITLE;
4343 TITLE1 "Barra Factor Returns as of %SYSFUNC(DATE(),
4343! EURDFDE9.)";
4344 FOOTNOTE;
4345 FOOTNOTE1;
4346
4347 ods proclabel 'BF Returns';
4348
NOTE: There were 24 observations read from the data set
SASHELP.PRDSALE.
WHERE (year=1994) and (region='EAST') and
(country='CANADA') and (product='DESK');
NOTE: PROCEDURE GPLOT used (Total process time):
real time 3:17.76
cpu time 1.76 seconds
4349 PROC GPLOT DATA = sashelp.prdsale NOCACHE ;
4350 where year = 1994 and region='EAST' and country='CANADA'
4350! and product='DESK';
4351 PLOT (actual)*Month / NOFRAME VZERO VAXIS=AXIS1 VREF=0
4351! HAXIS=AXIS2 SKIPMISS LEGEND=LEGEND1;
4352 PLOT (predict)*Month / NOFRAME VZERO VAXIS=AXIS1 VREF=0
4352! HAXIS=AXIS3 SKIPMISS LEGEND=LEGEND1;
4353 RUN;
4354
4355
4356 ods pdf close;
NOTE: ODS PDF printed 1 page to c:\temp\PlotBRet2.pdf.
4357
4358 ods listing;
4359 TITLE; FOOTNOTE;
4360 GOPTIONS RESET=ALL;
[/pre]
This leads me to wonder 1) what version of SAS you're using and 2) what operating system you're using and 3) in what other context you might be submitting the code (such as from within SAS Enterprise Guide or as a SAS Stored Process).
However, at this point I have no idea why your title is being obscured. Without knowing the units that are set for your SAS/GRAPH goptions, it is hard to know what HTITLE=1 means -- the UNITS for HTITLE could be in CELLS, CM, IN, PCT or PT -- so a few things you could try are 1) to specify an explicit unit for size for the HTITLE= option:
[pre]
HTITLE=14pt
HTITLE=2pct
[/pre]
and see whether the title is still obscure;
[/pre]
or 2) take HTITLE out altogether and allow the style template (if you are using SAS 9.2) to control the titles and see whether the title is still obscure; or
or 3) take HTITLE out altogether and alter the TITLE statement:
[pre]
TITLE1 h=2pct "Barra Factor Returns as of %SYSFUNC(DATE(), EURDFDE9.)";
TITLE1 h=14pt "Barra Factor Returns as of %SYSFUNC(DATE(), EURDFDE9.)";
[/pre]
At this point, your best bet for help might be to open a track with Tech Support. They can help you with solutions that will be specific to your version of SAS and your operating system. To open a track with Tech Support, fill out the form at this link:
http://support.sas.com/ctx/supportform/createForm
cynthia