<?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: A question about _error_ automatic variable in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/A-question-about-error-automatic-variable/m-p/145261#M38592</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi Reeza,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your reply. Actually, I was intentionally missing the the semi-colon after _n_ to make the mistake. Beasue I want to check whether the _errror_ would be changed to 1 in that case. Aftet test, in my example, even through the procedure was stopped because of the error, the _error_ was still showing as 0 in the log file. That was my question, why was not it 1?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In addition, in your revised code, I do not see the PUT statement works in the log file....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Dec 2014 18:02:59 GMT</pubDate>
    <dc:creator>Tiny_Kane</dc:creator>
    <dc:date>2014-12-11T18:02:59Z</dc:date>
    <item>
      <title>A question about _error_ automatic variable</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/A-question-about-error-automatic-variable/m-p/145258#M38589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I have been struggling with a stupid question for four hours…I need your help…&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is about the automatic variable _&lt;EM&gt;error&lt;/EM&gt;_. I actually want to use this variable to do debug things. However, I found a weird phenomenon…The procedure did have error and steps were failed to run in my program, however the _&lt;EM&gt;error&lt;/EM&gt;_ was still resolved to be 0, which was different from my thought, 1 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, give you the code as follow&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;data&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; test;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;input&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; x y;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;cards&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: #ffffc0; color: black; font-size: 10pt;"&gt;1 2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: #ffffc0; color: black; font-size: 10pt;"&gt;3 4&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;data&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; test;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;set&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; test;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;n=_n_&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;%put&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; &amp;amp;_error_;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;run&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: yellow; color: black;"&gt;The _&lt;EM&gt;error&lt;/EM&gt;_ was resolved as o in the log window…&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;106421&amp;nbsp; data test;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;106422&amp;nbsp; input x y;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;106423&amp;nbsp; cards;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;NOTE: The data set WORK.TEST has 2 observations and 2 variables.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;NOTE: DATA statement used (Total process time):&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.00 seconds&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.00 seconds&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;106426&amp;nbsp; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;106427&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;106428&amp;nbsp; data test;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;106429&amp;nbsp; set test;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;106430&amp;nbsp; n=_n_&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; background: yellow; font-size: 8pt;"&gt;106431&amp;nbsp; %put &amp;amp;_error_;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; background: yellow; font-size: 8pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;106432&amp;nbsp; run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ---&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 22&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;ERROR 22-322: Syntax error, expecting one of the following: !, !!, &amp;amp;, *, **, +, -, /, &amp;lt;, &amp;lt;=,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&amp;gt;, =, &amp;gt;, &amp;gt;&amp;lt;, &amp;gt;=, AND, EQ, GE, GT, IN, LE, LT, MAX, MIN, NE, NG, NL, NOTIN, OR,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^=, |, ||, ~=.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you teach me how to use _&lt;EM&gt;error&lt;/EM&gt;_ in debugging? Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2014 19:17:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/A-question-about-error-automatic-variable/m-p/145258#M38589</guid>
      <dc:creator>Tiny_Kane</dc:creator>
      <dc:date>2014-12-10T19:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: A question about _error_ automatic variable</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/A-question-about-error-automatic-variable/m-p/145259#M38590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're missing a semi-colon after _n_, before the put statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_error_ is an automatic variable NOT a macro variable.&amp;nbsp; The following code works, but I'm not sure what you're looking for it to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;&lt;SPAN style="color: #011993;"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/SPAN&gt; test;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;&lt;SPAN style="color: #0433ff;"&gt;input&lt;/SPAN&gt; x y;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New'; color: #0433ff;"&gt;cards&lt;SPAN style="color: #000000;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;1 2&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;3 4&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;&lt;SPAN style="color: #011993;"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/SPAN&gt; test;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;&lt;SPAN style="color: #0433ff;"&gt;set&lt;/SPAN&gt; test;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;n=_n_;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;&lt;SPAN style="color: #0433ff;"&gt;put&lt;/SPAN&gt; _error_;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New'; color: #011993;"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;SPAN style="color: #000000;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2014 19:58:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/A-question-about-error-automatic-variable/m-p/145259#M38590</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-12-10T19:58:55Z</dc:date>
    </item>
    <item>
      <title>Re: A question about _error_ automatic variable</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/A-question-about-error-automatic-variable/m-p/145260#M38591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SAS will set SYSERR macro variable for some types of errors.&amp;nbsp; But if you want to convert the data step _ERROR_ variable into a macro variable then add code in your data step to do that.&amp;nbsp; For example the step below will not cause the automatic macro variable SYSERR to be set, but the CALL SYMPUTX will set the user macro variable _ERROR_.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let _error_=0;&lt;/P&gt;&lt;P&gt;data y;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; input x 3. ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; if _error_ then call symputx('_error_','1');&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;abc&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;%put syserr=&amp;amp;syserr _error_=&amp;amp;_error_ ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2014 23:05:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/A-question-about-error-automatic-variable/m-p/145260#M38591</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2014-12-10T23:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: A question about _error_ automatic variable</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/A-question-about-error-automatic-variable/m-p/145261#M38592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi Reeza,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your reply. Actually, I was intentionally missing the the semi-colon after _n_ to make the mistake. Beasue I want to check whether the _errror_ would be changed to 1 in that case. Aftet test, in my example, even through the procedure was stopped because of the error, the _error_ was still showing as 0 in the log file. That was my question, why was not it 1?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In addition, in your revised code, I do not see the PUT statement works in the log file....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2014 18:02:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/A-question-about-error-automatic-variable/m-p/145261#M38592</guid>
      <dc:creator>Tiny_Kane</dc:creator>
      <dc:date>2014-12-11T18:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: A question about _error_ automatic variable</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/A-question-about-error-automatic-variable/m-p/145262#M38593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;_error_ is a PDV variable that only comes alive when a data step is executed. The error in your example (missing a semicolon) is a syntax error that will be detected in the compiling stage, meaning when this error happens, there is no PDV yet, so it is meaningless to talk about a PDV variable, such as _error_.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure about your agenda, but if your purpose is debugging SAS code, then there are many options that you can use, to start, check this link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/lrcon/65287/HTML/default/viewer.htm#p0rafz0thpktv9n1vvb6ku0wnki9.htm" title="http://support.sas.com/documentation/cdl/en/lrcon/65287/HTML/default/viewer.htm#p0rafz0thpktv9n1vvb6ku0wnki9.htm"&gt;SAS(R) 9.3 Language Reference: Concepts, Second Edition&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2014 18:30:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/A-question-about-error-automatic-variable/m-p/145262#M38593</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2014-12-11T18:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: A question about _error_ automatic variable</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/A-question-about-error-automatic-variable/m-p/145263#M38594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for your explain and the code. Thanks a lot!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2014 19:00:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/A-question-about-error-automatic-variable/m-p/145263#M38594</guid>
      <dc:creator>Tiny_Kane</dc:creator>
      <dc:date>2014-12-11T19:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: A question about _error_ automatic variable</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/A-question-about-error-automatic-variable/m-p/145264#M38595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hai.kuo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your explain! Your link is very helpful. Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2014 19:01:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/A-question-about-error-automatic-variable/m-p/145264#M38595</guid>
      <dc:creator>Tiny_Kane</dc:creator>
      <dc:date>2014-12-11T19:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: A question about _error_ automatic variable</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/A-question-about-error-automatic-variable/m-p/145265#M38596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By the way, yes, I want to do debugging. It really takes me a lot of time to search for debugging methods. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2014 19:02:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/A-question-about-error-automatic-variable/m-p/145265#M38596</guid>
      <dc:creator>Tiny_Kane</dc:creator>
      <dc:date>2014-12-11T19:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: A question about _error_ automatic variable</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/A-question-about-error-automatic-variable/m-p/145266#M38597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What kind of debugging? Automated debugging for programs or debugging techniques for interactive programming?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There's a ton of papers on lexjansen.com with regards to this.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2014 19:13:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/A-question-about-error-automatic-variable/m-p/145266#M38597</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-12-11T19:13:21Z</dc:date>
    </item>
  </channel>
</rss>

