<?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 System Title in proc print/ods in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/System-Title-in-proc-print-ods/m-p/70967#M8122</link>
    <description>Hi, currently have something like this where I want to simply use proc print with ods otpions....&lt;BR /&gt;
&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods tagsets.tableeditor file=dout options(web_tabs="&amp;amp;company_code") STYLE=uhc headtext="&lt;STYLE&gt; td, th {vertical-align:bottom !important}&amp;lt;style&amp;gt;";*/&amp;lt;br&amp;gt;
proc print data=tbl&amp;amp;i noobs;&amp;lt;br&amp;gt;
run;&amp;lt;br&amp;gt;
ods tagsets.tableeditor close;&amp;lt;br&amp;gt;
ods listing;&amp;lt;br&amp;gt;
&amp;lt;br&amp;gt;
This code creates results that I want...but there is The SAS System title in the top of page when created...how can I get rid off it? I can put another text/title in there. I tried text options...but did not do much. Any advise?&amp;lt;br&amp;gt;
This code creates results that I want...but there is The SAS System title in the top of page when created...how can I get rid off it? I can put another text/title in there. I tried text options...but did not do much. Any advise?&lt;/STYLE&gt;</description>
    <pubDate>Fri, 23 Jan 2009 19:03:12 GMT</pubDate>
    <dc:creator>Karo_22</dc:creator>
    <dc:date>2009-01-23T19:03:12Z</dc:date>
    <item>
      <title>System Title in proc print/ods</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/System-Title-in-proc-print-ods/m-p/70967#M8122</link>
      <description>Hi, currently have something like this where I want to simply use proc print with ods otpions....&lt;BR /&gt;
&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods tagsets.tableeditor file=dout options(web_tabs="&amp;amp;company_code") STYLE=uhc headtext="&lt;STYLE&gt; td, th {vertical-align:bottom !important}&amp;lt;style&amp;gt;";*/&amp;lt;br&amp;gt;
proc print data=tbl&amp;amp;i noobs;&amp;lt;br&amp;gt;
run;&amp;lt;br&amp;gt;
ods tagsets.tableeditor close;&amp;lt;br&amp;gt;
ods listing;&amp;lt;br&amp;gt;
&amp;lt;br&amp;gt;
This code creates results that I want...but there is The SAS System title in the top of page when created...how can I get rid off it? I can put another text/title in there. I tried text options...but did not do much. Any advise?&amp;lt;br&amp;gt;
This code creates results that I want...but there is The SAS System title in the top of page when created...how can I get rid off it? I can put another text/title in there. I tried text options...but did not do much. Any advise?&lt;/STYLE&gt;</description>
      <pubDate>Fri, 23 Jan 2009 19:03:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/System-Title-in-proc-print-ods/m-p/70967#M8122</guid>
      <dc:creator>Karo_22</dc:creator>
      <dc:date>2009-01-23T19:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: System Title in proc print/ods</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/System-Title-in-proc-print-ods/m-p/70968#M8123</link>
      <description>You can suppress this default title by specifying a title statement with no title:&lt;BR /&gt;
&lt;BR /&gt;
[pre]title;[/pre]</description>
      <pubDate>Fri, 23 Jan 2009 20:27:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/System-Title-in-proc-print-ods/m-p/70968#M8123</guid>
      <dc:creator>Tim_SAS</dc:creator>
      <dc:date>2009-01-23T20:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: System Title in proc print/ods</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/System-Title-in-proc-print-ods/m-p/70969#M8124</link>
      <description>Sorry, not clear where to put that. In ODS stmt or in proc print...tried both ways &amp;amp; got errors .</description>
      <pubDate>Fri, 23 Jan 2009 21:20:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/System-Title-in-proc-print-ods/m-p/70969#M8124</guid>
      <dc:creator>Karo_22</dc:creator>
      <dc:date>2009-01-23T21:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: System Title in proc print/ods</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/System-Title-in-proc-print-ods/m-p/70970#M8125</link>
      <description>Hi:&lt;BR /&gt;
  The TITLE statement is a SAS Global statement. Any of these are valid:&lt;BR /&gt;
[pre]&lt;BR /&gt;
                                    &lt;BR /&gt;
** NULL title statement inside PROC step boundary;&lt;BR /&gt;
ods &amp;lt;destination information goes here&amp;gt; ;&lt;BR /&gt;
  proc print data=sashelp.class noobs;&lt;BR /&gt;
    title;&lt;BR /&gt;
  run;&lt;BR /&gt;
ods _all_ close;&lt;BR /&gt;
                                           &lt;BR /&gt;
** TITLE statement with value outside ODS "sandwich";                                                  &lt;BR /&gt;
title 'My Report Title';&lt;BR /&gt;
ods &amp;lt;destination information goes here&amp;gt; ;&lt;BR /&gt;
  proc print data=sashelp.class noobs;&lt;BR /&gt;
  run;&lt;BR /&gt;
ods _all_ close;&lt;BR /&gt;
                                                                               &lt;BR /&gt;
** TITLE statement with value inside PROC PRINT step;                                      &lt;BR /&gt;
ods &amp;lt;destination information goes here&amp;gt; ;&lt;BR /&gt;
  proc print data=sashelp.class noobs;&lt;BR /&gt;
    title 'My Report Title';&lt;BR /&gt;
  run;&lt;BR /&gt;
ods _all_ close;                                &lt;BR /&gt;
[/pre]&lt;BR /&gt;
                                                                          &lt;BR /&gt;
A "null" TITLE statement (TITLE;) will remove the TITLE1 value and any other TITLEs (TITLE2 through TITLE10) that have been set. Although some ODS destinations (such as HTML) have a TITLE= option, it is entirely different than the SAS Global TITLE statement. A TITLE statement is not tied to ODS -- in fact, a TITLE statement is not necessarily tied to any single procedure. You could issue a TITLE statement at the top of your program:&lt;BR /&gt;
[pre]&lt;BR /&gt;
title 'All My Output';&lt;BR /&gt;
    &lt;BR /&gt;
proc freq data=sashelp.shoes;&lt;BR /&gt;
  title2 'Proc Freq';&lt;BR /&gt;
  tables region;&lt;BR /&gt;
run;&lt;BR /&gt;
 &lt;BR /&gt;
proc means data=sashelp.shoes;&lt;BR /&gt;
  title2 'Proc Means';&lt;BR /&gt;
  var sales;&lt;BR /&gt;
run;&lt;BR /&gt;
                   &lt;BR /&gt;
proc print data=sashelp.shoes(obs=5);&lt;BR /&gt;
  title2 'Five Obs';&lt;BR /&gt;
run;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
                              &lt;BR /&gt;
And then all 3 outputs, in the LISTING window, would have the same TITLE1 (All My Output) and different TITLE2 statements. If you routed your output to ODS, then, if your destination accepted the titles or used the titles, you should see them in your output. Every time SAS starts, a default TITLE1 statement is set, which makes the default title "The SAS System". To remove that default title in your output, you would issue a NULL TITLE statement, which is just the keyword TITLE, followed by a semi-colon. The statement is generally issued on a line by itself, not as part of an ODS statement, or a PROC statement:&lt;BR /&gt;
[pre]&lt;BR /&gt;
     title;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Fri, 23 Jan 2009 22:23:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/System-Title-in-proc-print-ods/m-p/70970#M8125</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-01-23T22:23:10Z</dc:date>
    </item>
  </channel>
</rss>

