<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Get rid out of the title The SAS system in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Get-rid-out-of-the-title-The-SAS-system/m-p/58622#M7000</link>
    <description>Hi &lt;BR /&gt;
Iam creating a pdf file from a sas dataset.&lt;BR /&gt;
&lt;BR /&gt;
Here is my coding, In my output I see &lt;B&gt;The SAS system&lt;/B&gt; at the top of the every page. Can any one please help me out how to get rid out of the title &lt;B&gt;The SAS system&lt;/B&gt; from the PDF file output.&lt;BR /&gt;
&lt;BR /&gt;
options orientation = landscape;&lt;BR /&gt;
options papersize = legal;&lt;BR /&gt;
options ls = 150 pagesize=72;&lt;BR /&gt;
options nodate nonumber;&lt;BR /&gt;
options title='';&lt;BR /&gt;
proc template;&lt;BR /&gt;
	define style styles.test;&lt;BR /&gt;
	parent = styles.printer;&lt;BR /&gt;
	style batch from output / &lt;BR /&gt;
	outputwidth = 100%&lt;BR /&gt;
	font_size=9.9pt&lt;BR /&gt;
	font_face = courier;&lt;BR /&gt;
	end;&lt;BR /&gt;
	run;&lt;BR /&gt;
filename ftr "C:\DOWNLOAD\xxxxxx.TXT";&lt;BR /&gt;
&lt;BR /&gt;
	ods listing close;&lt;BR /&gt;
	ods pdf file = 'C:\DOWNLOAD\yyyyyyyy.PDF'&lt;BR /&gt;
	style=styles.test notoc;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
	data ftr;&lt;BR /&gt;
	infile ftr;&lt;BR /&gt;
	input @1 rec $char149.;&lt;BR /&gt;
	run;&lt;BR /&gt;
&lt;BR /&gt;
	data _null_;&lt;BR /&gt;
	infile ftr;&lt;BR /&gt;
	file print ps=72;&lt;BR /&gt;
	input;&lt;BR /&gt;
	put _infile_;&lt;BR /&gt;
&lt;BR /&gt;
	run;&lt;BR /&gt;
&lt;BR /&gt;
	ods _all_ close;&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
&lt;BR /&gt;
Inpu</description>
    <pubDate>Fri, 31 Oct 2008 00:19:23 GMT</pubDate>
    <dc:creator>Inp</dc:creator>
    <dc:date>2008-10-31T00:19:23Z</dc:date>
    <item>
      <title>Get rid out of the title The SAS system</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Get-rid-out-of-the-title-The-SAS-system/m-p/58622#M7000</link>
      <description>Hi &lt;BR /&gt;
Iam creating a pdf file from a sas dataset.&lt;BR /&gt;
&lt;BR /&gt;
Here is my coding, In my output I see &lt;B&gt;The SAS system&lt;/B&gt; at the top of the every page. Can any one please help me out how to get rid out of the title &lt;B&gt;The SAS system&lt;/B&gt; from the PDF file output.&lt;BR /&gt;
&lt;BR /&gt;
options orientation = landscape;&lt;BR /&gt;
options papersize = legal;&lt;BR /&gt;
options ls = 150 pagesize=72;&lt;BR /&gt;
options nodate nonumber;&lt;BR /&gt;
options title='';&lt;BR /&gt;
proc template;&lt;BR /&gt;
	define style styles.test;&lt;BR /&gt;
	parent = styles.printer;&lt;BR /&gt;
	style batch from output / &lt;BR /&gt;
	outputwidth = 100%&lt;BR /&gt;
	font_size=9.9pt&lt;BR /&gt;
	font_face = courier;&lt;BR /&gt;
	end;&lt;BR /&gt;
	run;&lt;BR /&gt;
filename ftr "C:\DOWNLOAD\xxxxxx.TXT";&lt;BR /&gt;
&lt;BR /&gt;
	ods listing close;&lt;BR /&gt;
	ods pdf file = 'C:\DOWNLOAD\yyyyyyyy.PDF'&lt;BR /&gt;
	style=styles.test notoc;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
	data ftr;&lt;BR /&gt;
	infile ftr;&lt;BR /&gt;
	input @1 rec $char149.;&lt;BR /&gt;
	run;&lt;BR /&gt;
&lt;BR /&gt;
	data _null_;&lt;BR /&gt;
	infile ftr;&lt;BR /&gt;
	file print ps=72;&lt;BR /&gt;
	input;&lt;BR /&gt;
	put _infile_;&lt;BR /&gt;
&lt;BR /&gt;
	run;&lt;BR /&gt;
&lt;BR /&gt;
	ods _all_ close;&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
&lt;BR /&gt;
Inpu</description>
      <pubDate>Fri, 31 Oct 2008 00:19:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Get-rid-out-of-the-title-The-SAS-system/m-p/58622#M7000</guid>
      <dc:creator>Inp</dc:creator>
      <dc:date>2008-10-31T00:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: Get rid out of the title The SAS system</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Get-rid-out-of-the-title-The-SAS-system/m-p/58623#M7001</link>
      <description>Inpu &lt;BR /&gt;
i don't understand really what's your goal with this kind of program  : testing only?&lt;BR /&gt;
&lt;BR /&gt;
About the question upon  The SAS system &lt;BR /&gt;
change your code into   Title;&lt;BR /&gt;
&lt;BR /&gt;
here a rewriting of your code with some modification  mostly reordering what is ods and not&lt;BR /&gt;
and an addition to show how to write directly to ods&lt;BR /&gt;
(in my example the text of rec is short, but if it is really 149....)&lt;BR /&gt;
(you can also avoid a  a frame trace if you pursuit some template modification)&lt;BR /&gt;
HTH &lt;BR /&gt;
Andre&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
proc template;&lt;BR /&gt;
define style styles.test;&lt;BR /&gt;
parent = styles.printer;&lt;BR /&gt;
style batch from output /outputwidth = 100%&lt;BR /&gt;
     font_size=9.9pt&lt;BR /&gt;
     font_face = courier;&lt;BR /&gt;
end;&lt;BR /&gt;
run;&lt;BR /&gt;
filename ftr "d:\temp\xxxxxx.TXT";&lt;BR /&gt;
data _null_ ;&lt;BR /&gt;
   file ftr;&lt;BR /&gt;
   do i =1 to 149;put @145 "xxxxx";end;&lt;BR /&gt;
run;&lt;BR /&gt;
data ftr;&lt;BR /&gt;
  infile ftr;&lt;BR /&gt;
  input @1 rec $char149.;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
options orientation = landscape;&lt;BR /&gt;
options papersize = legal;&lt;BR /&gt;
options ls = 150 pagesize=72;&lt;BR /&gt;
options nodate nonumber;&lt;BR /&gt;
 title ;   &amp;lt;*************************************;&lt;BR /&gt;
&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods pdf file = 'd:\temp\yyyyyyyy.PDF' style=styles.test notoc;&lt;BR /&gt;
&lt;BR /&gt;
data _null_;&lt;BR /&gt;
  infile ftr;&lt;BR /&gt;
  file print ps=72;&lt;BR /&gt;
  input;&lt;BR /&gt;
  put _infile_;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
data _null_;&lt;BR /&gt;
  file print ods=(var=(rec));&lt;BR /&gt;
  set ftr;&lt;BR /&gt;
  put rec;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods pdf close;&lt;BR /&gt;
ods listing;&lt;BR /&gt;
&lt;BR /&gt;
[/pre]</description>
      <pubDate>Fri, 31 Oct 2008 12:09:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Get-rid-out-of-the-title-The-SAS-system/m-p/58623#M7001</guid>
      <dc:creator>Andre</dc:creator>
      <dc:date>2008-10-31T12:09:02Z</dc:date>
    </item>
  </channel>
</rss>

