<?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: Do We see &amp;quot;UERROR&amp;quot; and &amp;quot;UWARNING&amp;quot;  Text in SAS Program logs? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Do-We-see-quot-UERROR-quot-and-quot-UWARNING-quot-Text-in-SAS/m-p/928196#M365198</link>
    <description>&lt;P&gt;I won't say that I've seen every error or warning SAS may generate bu those look like user written code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Open the code for the macro and search for the text "UERROR" and / or "UWARNING" in the code. If you see them in %PUT or Put statements that's your answer. As well as the likely conditions causing them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would say there is chance that these warnings are also associated with code to skip other bits of code that might cause other errors that would appear.&lt;/P&gt;</description>
    <pubDate>Mon, 13 May 2024 19:06:35 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2024-05-13T19:06:35Z</dc:date>
    <item>
      <title>Do We see "UERROR" and "UWARNING"  Text in SAS Program logs?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-We-see-quot-UERROR-quot-and-quot-UWARNING-quot-Text-in-SAS/m-p/928187#M365194</link>
      <description>&lt;P&gt;We trying to have a macro to check issues. I came across, "UWARNING" and "UERROR" in one of the online program in their issues list. I have never encountered these in my experience. In what cases do we see these in the logs?&lt;/P&gt;</description>
      <pubDate>Mon, 13 May 2024 18:49:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-We-see-quot-UERROR-quot-and-quot-UWARNING-quot-Text-in-SAS/m-p/928187#M365194</guid>
      <dc:creator>SASuserlot</dc:creator>
      <dc:date>2024-05-13T18:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: Do We see "UERROR" and "UWARNING"  Text in SAS Program logs?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-We-see-quot-UERROR-quot-and-quot-UWARNING-quot-Text-in-SAS/m-p/928190#M365195</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/350312"&gt;@SASuserlot&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;We trying to have a macro to check issues. I came across, "UWARNING" and "UERROR" in one of the online program in their issues list. I have never encountered these in my experience. In what cases do we see these in the logs?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Probably when you have code that generates them.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%if not %sysfunc(exist(DM)) %then %do;
%put UERROR: DM dataset not found. ;
%end;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 13 May 2024 18:53:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-We-see-quot-UERROR-quot-and-quot-UWARNING-quot-Text-in-SAS/m-p/928190#M365195</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2024-05-13T18:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: Do We see "UERROR" and "UWARNING"  Text in SAS Program logs?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-We-see-quot-UERROR-quot-and-quot-UWARNING-quot-Text-in-SAS/m-p/928192#M365196</link>
      <description>&lt;P&gt;Thank you for the quick reply; so, these are customized warnings or notes we put for our tracking purposes, not usual issues we see in the log? is my understanding correct?&lt;/P&gt;</description>
      <pubDate>Mon, 13 May 2024 18:57:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-We-see-quot-UERROR-quot-and-quot-UWARNING-quot-Text-in-SAS/m-p/928192#M365196</guid>
      <dc:creator>SASuserlot</dc:creator>
      <dc:date>2024-05-13T18:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: Do We see "UERROR" and "UWARNING"  Text in SAS Program logs?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-We-see-quot-UERROR-quot-and-quot-UWARNING-quot-Text-in-SAS/m-p/928196#M365198</link>
      <description>&lt;P&gt;I won't say that I've seen every error or warning SAS may generate bu those look like user written code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Open the code for the macro and search for the text "UERROR" and / or "UWARNING" in the code. If you see them in %PUT or Put statements that's your answer. As well as the likely conditions causing them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would say there is chance that these warnings are also associated with code to skip other bits of code that might cause other errors that would appear.&lt;/P&gt;</description>
      <pubDate>Mon, 13 May 2024 19:06:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-We-see-quot-UERROR-quot-and-quot-UWARNING-quot-Text-in-SAS/m-p/928196#M365198</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-05-13T19:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: Do We see "UERROR" and "UWARNING"  Text in SAS Program logs?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-We-see-quot-UERROR-quot-and-quot-UWARNING-quot-Text-in-SAS/m-p/928202#M365199</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/350312"&gt;@SASuserlot&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank you for the quick reply; so, these are customized warnings or notes we put for our tracking purposes, not usual issues we see in the log? is my understanding correct?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I think that's&amp;nbsp; a good bet. I would assume the U is for "user" as in "user-generated error message".&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I sometimes use:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;put "ERROR: (USER)  something bad happened " ;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;So that the message starts with ERROR: and will be highlighted in the log like other errors.&amp;nbsp; But I know it's an error message written by me, not SAS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since my name is Quentin I use Q for a lot of stuff, so I also do:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;put "ERROR: (QQQ) something bad happened " ;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;when I'm talking to myself. : )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Inside a macro definition, I use:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put ERROR: (%nrstr(%%)&amp;amp;sysmacroname)&amp;nbsp;...&amp;nbsp;;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 13 May 2024 19:28:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-We-see-quot-UERROR-quot-and-quot-UWARNING-quot-Text-in-SAS/m-p/928202#M365199</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2024-05-13T19:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: Do We see "UERROR" and "UWARNING"  Text in SAS Program logs?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-We-see-quot-UERROR-quot-and-quot-UWARNING-quot-Text-in-SAS/m-p/928203#M365200</link>
      <description>&lt;P&gt;Understood. Thank you&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19879"&gt;@Quentin&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp; for your help&lt;/P&gt;</description>
      <pubDate>Mon, 13 May 2024 19:42:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-We-see-quot-UERROR-quot-and-quot-UWARNING-quot-Text-in-SAS/m-p/928203#M365200</guid>
      <dc:creator>SASuserlot</dc:creator>
      <dc:date>2024-05-13T19:42:52Z</dc:date>
    </item>
  </channel>
</rss>

