<?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 ODS noproctitle has no effect in ods html in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ODS-noproctitle-has-no-effect-in-ods-html/m-p/739022#M230605</link>
    <description>&lt;P&gt;I am trying to suppress the PROC title in html output. I am using the ODS noproctitle option, but the PROC title is still appearing in the output.&lt;BR /&gt;What could be wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods listing close;&lt;BR /&gt;ods noproctitle;&lt;BR /&gt;ods html style=daisy file='test.html' path=".";&lt;BR /&gt;title "y=a+bxlnx";&lt;BR /&gt;ods graphics on;&lt;BR /&gt;proc nlin data=exposure method=Marquardt noitprint plots=fitplot(stats=default(rmsincurv rmspecurv));&lt;BR /&gt;by study harvest;&lt;BR /&gt;parameters A=1 to 201 by 20 B=-0.000001;&lt;BR /&gt;bounds B&amp;lt;0;&lt;BR /&gt;model response=A+B*exposure*log(exposure);&lt;BR /&gt;output out=RESULTS parms=A B predicted=pyDW;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;ods graphics off;&lt;BR /&gt;title;&lt;BR /&gt;ods html close;&lt;BR /&gt;ods listing;&lt;/P&gt;</description>
    <pubDate>Tue, 04 May 2021 18:17:16 GMT</pubDate>
    <dc:creator>Jean-Jacques</dc:creator>
    <dc:date>2021-05-04T18:17:16Z</dc:date>
    <item>
      <title>ODS noproctitle has no effect in ods html</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-noproctitle-has-no-effect-in-ods-html/m-p/739022#M230605</link>
      <description>&lt;P&gt;I am trying to suppress the PROC title in html output. I am using the ODS noproctitle option, but the PROC title is still appearing in the output.&lt;BR /&gt;What could be wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods listing close;&lt;BR /&gt;ods noproctitle;&lt;BR /&gt;ods html style=daisy file='test.html' path=".";&lt;BR /&gt;title "y=a+bxlnx";&lt;BR /&gt;ods graphics on;&lt;BR /&gt;proc nlin data=exposure method=Marquardt noitprint plots=fitplot(stats=default(rmsincurv rmspecurv));&lt;BR /&gt;by study harvest;&lt;BR /&gt;parameters A=1 to 201 by 20 B=-0.000001;&lt;BR /&gt;bounds B&amp;lt;0;&lt;BR /&gt;model response=A+B*exposure*log(exposure);&lt;BR /&gt;output out=RESULTS parms=A B predicted=pyDW;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;ods graphics off;&lt;BR /&gt;title;&lt;BR /&gt;ods html close;&lt;BR /&gt;ods listing;&lt;/P&gt;</description>
      <pubDate>Tue, 04 May 2021 18:17:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-noproctitle-has-no-effect-in-ods-html/m-p/739022#M230605</guid>
      <dc:creator>Jean-Jacques</dc:creator>
      <dc:date>2021-05-04T18:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: ODS noproctitle has no effect in ods html</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-noproctitle-has-no-effect-in-ods-html/m-p/739023#M230606</link>
      <description>&lt;P&gt;Put the ODS NOPROCTITLE after your ODS HTML statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;FYI - I cannot replicate your issue under a variety of tests. Please include your log, your SAS version and ensure you're looking at the correct output file. It would help if you can replicate the problem with a simpler proc, ie PROC FREQ so that anyone can run your code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Code I ran:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods listing close;
ods noproctitle;
ods html style=daisy file='test.html' path="/home/fkhurshed/";
title "y=a+bxlnx";
ods graphics on;
proc freq data=sashelp.class;
table age*sex;
run;

ods graphics off;
title;
ods html close;
ods listing;


&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Output seen:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Reeza_0-1620152826312.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/59026iE709A294461E2223/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Reeza_0-1620152826312.png" alt="Reeza_0-1620152826312.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;No title, as per NOPROCTITLE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 May 2021 18:27:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-noproctitle-has-no-effect-in-ods-html/m-p/739023#M230606</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-05-04T18:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: ODS noproctitle has no effect in ods html</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-noproctitle-has-no-effect-in-ods-html/m-p/739025#M230607</link>
      <description>Tested on SAS 9.4M6 (SAS On Demand for Academics, SAS Studio).</description>
      <pubDate>Tue, 04 May 2021 18:28:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-noproctitle-has-no-effect-in-ods-html/m-p/739025#M230607</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-05-04T18:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: ODS noproctitle has no effect in ods html</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-noproctitle-has-no-effect-in-ods-html/m-p/739032#M230611</link>
      <description>&lt;P&gt;Thanks for taking a look at this.&lt;/P&gt;&lt;P&gt;I am running SAS 9.4 TS 1M6 on X64_10PRO&lt;/P&gt;&lt;P&gt;I tested the following code, and ods noproctitle worked perfectly as intended. This seems very odd to me.&amp;nbsp; The only thing I changed is the PROC. Could it be an NLIN-specific issue?&lt;/P&gt;&lt;P&gt;ods noproctitle;&lt;BR /&gt;ods listing close;&lt;BR /&gt;ods html style=daisy file='test.html' path=".";&lt;BR /&gt;title "TEST NOPROCTITLE";&lt;BR /&gt;ods graphics on;&lt;/P&gt;&lt;P&gt;proc reg data=sashelp.class;&lt;BR /&gt;model Weight = Height;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;ods graphics off;&lt;BR /&gt;title;&lt;BR /&gt;ods html close;&lt;BR /&gt;ods listing;&lt;/P&gt;</description>
      <pubDate>Tue, 04 May 2021 18:44:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-noproctitle-has-no-effect-in-ods-html/m-p/739032#M230611</guid>
      <dc:creator>Jean-Jacques</dc:creator>
      <dc:date>2021-05-04T18:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: ODS noproctitle has no effect in ods html</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-noproctitle-has-no-effect-in-ods-html/m-p/739035#M230613</link>
      <description>It does appear to be a bit of a bug with the NLIN proc - Time to open a SAS Support ticket.</description>
      <pubDate>Tue, 04 May 2021 18:52:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-noproctitle-has-no-effect-in-ods-html/m-p/739035#M230613</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-05-04T18:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: ODS noproctitle has no effect in ods html</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-noproctitle-has-no-effect-in-ods-html/m-p/739039#M230616</link>
      <description>&lt;P&gt;It looks like it.&lt;BR /&gt;&lt;BR /&gt;I ran the following and ODS noproctitle had no effect. "The NLIN procedure" appeared in the output as a title.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods listing close;&lt;BR /&gt;ods noproctitle;&lt;BR /&gt;ods html style=daisy file='test.html' path=".";&lt;BR /&gt;title "TEST NOPROCTITLE";&lt;BR /&gt;ods graphics on;&lt;/P&gt;&lt;P&gt;proc NLIN data=sashelp.class;&lt;BR /&gt;parms A=0 B=1;&lt;BR /&gt;model Weight = A+B*Height;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;ods graphics off;&lt;BR /&gt;title;&lt;BR /&gt;ods html close;&lt;BR /&gt;ods listing;&lt;/P&gt;</description>
      <pubDate>Tue, 04 May 2021 19:15:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-noproctitle-has-no-effect-in-ods-html/m-p/739039#M230616</guid>
      <dc:creator>Jean-Jacques</dc:creator>
      <dc:date>2021-05-04T19:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: ODS noproctitle has no effect in ods html</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-noproctitle-has-no-effect-in-ods-html/m-p/739044#M230618</link>
      <description>Yes, I saw the same behaviour but only with PROC NLIN. Note that I tested PROC FREQ + NLIN but not other procs.&lt;BR /&gt;</description>
      <pubDate>Tue, 04 May 2021 19:58:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-noproctitle-has-no-effect-in-ods-html/m-p/739044#M230618</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-05-04T19:58:09Z</dc:date>
    </item>
  </channel>
</rss>

