<?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: How to obtain macro code for dftest and logtest (not just info on the call parameters) in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-to-obtain-macro-code-for-dftest-and-logtest-not-just-info-on/m-p/884940#M4710</link>
    <description>&lt;P&gt;Thank you very much Kurt!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This was enlightening (truely!) ... just let me remark, that SASROOT can be resolved automatically by the&amp;nbsp; filename line ... i.e. the following code also works:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename maccode "!SASROOT/sasautos/dftest.sas"; 
 
data _null_; 
infile maccode; 
input; 
put _infile_; 
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 16 Jul 2023 18:38:08 GMT</pubDate>
    <dc:creator>fja</dc:creator>
    <dc:date>2023-07-16T18:38:08Z</dc:date>
    <item>
      <title>How to obtain macro code for dftest and logtest (not just info on the call parameters)</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-to-obtain-macro-code-for-dftest-and-logtest-not-just-info-on/m-p/797718#M4342</link>
      <description>&lt;P&gt;How to obtain macro code for dftest and logtest (not just info on the call parameters)? I would like to extend the code.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See&amp;nbsp;&lt;A href="https://www.lexjansen.com/nesug/nesug94/NESUG94108.pdf" target="_blank"&gt;https://www.lexjansen.com/nesug/nesug94/NESUG94108.pdf&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Feb 2022 07:16:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-to-obtain-macro-code-for-dftest-and-logtest-not-just-info-on/m-p/797718#M4342</guid>
      <dc:creator>MaryA_Marion</dc:creator>
      <dc:date>2022-02-22T07:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain macro code for dftest and logtest (not just info on the call parameters)</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-to-obtain-macro-code-for-dftest-and-logtest-not-just-info-on/m-p/797732#M4343</link>
      <description>&lt;P&gt;These macros are in the sasautos subdirectory of your SASROOT.&lt;/P&gt;
&lt;P&gt;Run this first:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put %sysget(SASROOT);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to get the base location of your SAS installation; add /sasautos/ to that, and the name of the macro file.&lt;/P&gt;
&lt;P&gt;This retrieves the source code of the macro on SAS On Demand:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename maccode "/pbr/sfw/sas/940/SASFoundation/9.4/sasautos/dftest.sas";

data _null_;
infile maccode;
input;
put _infile_;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 22 Feb 2022 08:43:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-to-obtain-macro-code-for-dftest-and-logtest-not-just-info-on/m-p/797732#M4343</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-02-22T08:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain macro code for dftest and logtest (not just info on the call parameters)</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-to-obtain-macro-code-for-dftest-and-logtest-not-just-info-on/m-p/797828#M4344</link>
      <description>Thank you. I am going to look into sasautos directory a bit more.  MM</description>
      <pubDate>Tue, 22 Feb 2022 15:17:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-to-obtain-macro-code-for-dftest-and-logtest-not-just-info-on/m-p/797828#M4344</guid>
      <dc:creator>MaryA_Marion</dc:creator>
      <dc:date>2022-02-22T15:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain macro code for dftest and logtest (not just info on the call parameters)</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-to-obtain-macro-code-for-dftest-and-logtest-not-just-info-on/m-p/884940#M4710</link>
      <description>&lt;P&gt;Thank you very much Kurt!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This was enlightening (truely!) ... just let me remark, that SASROOT can be resolved automatically by the&amp;nbsp; filename line ... i.e. the following code also works:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename maccode "!SASROOT/sasautos/dftest.sas"; 
 
data _null_; 
infile maccode; 
input; 
put _infile_; 
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jul 2023 18:38:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-to-obtain-macro-code-for-dftest-and-logtest-not-just-info-on/m-p/884940#M4710</guid>
      <dc:creator>fja</dc:creator>
      <dc:date>2023-07-16T18:38:08Z</dc:date>
    </item>
  </channel>
</rss>

