<?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 Re: option nofmterr in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/option-nofmterr/m-p/23883#M3982</link>
    <description>Arbitrarily running a SAS application with NOFMTERR is dangerous, in my  opinion.  Depending on the number of the SAS variables which use a custom output format, you could consider using a FORMAT statement with no format to clear the output format attribute.  And, if you wanted to do so programmatically, you have SAS-maintained views such as DICTIONARY.COLUMNS for which you can generate the FORMAT statement to clear the format attribute in your SAS application.&lt;BR /&gt;
&lt;BR /&gt;
For more info on the DICTIONARY tables and SAS-maintained views, search the SAS support &lt;A href="http://support.sas.com/" target="_blank"&gt;http://support.sas.com/&lt;/A&gt;  website and there you will find SAS-hosted documentation and also supplemental technical reference / conference papers on the topic.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
    <pubDate>Tue, 01 Dec 2009 18:00:22 GMT</pubDate>
    <dc:creator>sbb</dc:creator>
    <dc:date>2009-12-01T18:00:22Z</dc:date>
    <item>
      <title>option nofmterr</title>
      <link>https://communities.sas.com/t5/SAS-Programming/option-nofmterr/m-p/23880#M3979</link>
      <description>In my SAS program I am using the option nofmterr since I have a SAS data set with custom formats but I do not have the corresponding SAS format library. So by using this option, instead of SAS generating ERROR messages, SAS generates NOTE messages that the format was not found or could not be loaded. Is there a way to eliminate these NOTE messages?</description>
      <pubDate>Tue, 01 Dec 2009 16:29:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/option-nofmterr/m-p/23880#M3979</guid>
      <dc:creator>kc0607</dc:creator>
      <dc:date>2009-12-01T16:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: option nofmterr</title>
      <link>https://communities.sas.com/t5/SAS-Programming/option-nofmterr/m-p/23881#M3980</link>
      <description>Try the NONOTES option</description>
      <pubDate>Tue, 01 Dec 2009 16:42:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/option-nofmterr/m-p/23881#M3980</guid>
      <dc:creator>Flip</dc:creator>
      <dc:date>2009-12-01T16:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: option nofmterr</title>
      <link>https://communities.sas.com/t5/SAS-Programming/option-nofmterr/m-p/23882#M3981</link>
      <description>NONOTES gets rid of all notes, so it may be more than  you want.&lt;BR /&gt;
&lt;BR /&gt;
If you are running in batch and just want to get rid of just those messages, you could post-process with grep or something similar.</description>
      <pubDate>Tue, 01 Dec 2009 17:25:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/option-nofmterr/m-p/23882#M3981</guid>
      <dc:creator>Doc_Duke</dc:creator>
      <dc:date>2009-12-01T17:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: option nofmterr</title>
      <link>https://communities.sas.com/t5/SAS-Programming/option-nofmterr/m-p/23883#M3982</link>
      <description>Arbitrarily running a SAS application with NOFMTERR is dangerous, in my  opinion.  Depending on the number of the SAS variables which use a custom output format, you could consider using a FORMAT statement with no format to clear the output format attribute.  And, if you wanted to do so programmatically, you have SAS-maintained views such as DICTIONARY.COLUMNS for which you can generate the FORMAT statement to clear the format attribute in your SAS application.&lt;BR /&gt;
&lt;BR /&gt;
For more info on the DICTIONARY tables and SAS-maintained views, search the SAS support &lt;A href="http://support.sas.com/" target="_blank"&gt;http://support.sas.com/&lt;/A&gt;  website and there you will find SAS-hosted documentation and also supplemental technical reference / conference papers on the topic.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Tue, 01 Dec 2009 18:00:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/option-nofmterr/m-p/23883#M3982</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-12-01T18:00:22Z</dc:date>
    </item>
    <item>
      <title>Re: option nofmterr</title>
      <link>https://communities.sas.com/t5/SAS-Programming/option-nofmterr/m-p/23884#M3983</link>
      <description>Greetings.&lt;BR /&gt;
I always use Format _all_ statement in such situation.&lt;BR /&gt;
Oleg.</description>
      <pubDate>Fri, 04 Dec 2009 11:12:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/option-nofmterr/m-p/23884#M3983</guid>
      <dc:creator>Oleg_L</dc:creator>
      <dc:date>2009-12-04T11:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: option nofmterr</title>
      <link>https://communities.sas.com/t5/SAS-Programming/option-nofmterr/m-p/23885#M3984</link>
      <description>To Oleg_1976:  your approach may be a bit short-sighted in that you are removing all SAS variable output formats.  Hopefully you don't do this type of logic with SAS code that others must support in addition to yourself.  &lt;BR /&gt;
&lt;BR /&gt;
I would liken your technique to hitting a fly with a Buick -- just to be sure you don't miss anything.&lt;BR /&gt;
&lt;BR /&gt;
Better to address the condition on an individual variable basis, if a particular custom FORMAT is not available for your SAS session.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Fri, 04 Dec 2009 16:39:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/option-nofmterr/m-p/23885#M3984</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-12-04T16:39:37Z</dc:date>
    </item>
  </channel>
</rss>

