<?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: Setting up an AUTOCALL in SAS On-Demand for Academics in SAS Software for Learning Community</title>
    <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Setting-up-an-AUTOCALL-in-SAS-On-Demand-for-Academics/m-p/829596#M606</link>
    <description>&lt;P&gt;Without wanting to overwrite the SASAUTOS library, Ron Cody's solution works like a charm:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://blogs.sas.com/content/sgf/2022/01/27/sas-auto-call-facility/" target="_blank" rel="nofollow noopener noreferrer"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="AutoCall6.jpg" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/74557i3B0968D6A1CF8EFE/image-size/large?v=v2&amp;amp;px=999" role="button" title="AutoCall6.jpg" alt="AutoCall6.jpg" /&gt;&lt;/span&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 22 Aug 2022 02:40:35 GMT</pubDate>
    <dc:creator>derekmor54</dc:creator>
    <dc:date>2022-08-22T02:40:35Z</dc:date>
    <item>
      <title>Setting up an AUTOCALL in SAS On-Demand for Academics</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Setting-up-an-AUTOCALL-in-SAS-On-Demand-for-Academics/m-p/829457#M597</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to set up an autocall library for macros? I've used:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;OPTIONS MAUTOSOURCE SASAUTOS=('/home/me/rrdb/data'  '/home/me/rrdb/autocall' SASAUTOS);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;It worked under University edition, but ODA doesn't seem to recognize the autocall directory.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2022 21:25:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Setting-up-an-AUTOCALL-in-SAS-On-Demand-for-Academics/m-p/829457#M597</guid>
      <dc:creator>derekmor54</dc:creator>
      <dc:date>2022-08-19T21:25:15Z</dc:date>
    </item>
    <item>
      <title>Re: Setting up an AUTOCALL in SAS On-Demand for Academics</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Setting-up-an-AUTOCALL-in-SAS-On-Demand-for-Academics/m-p/829487#M598</link>
      <description>&lt;P&gt;Do these directories actually exists and if yes does your user have at least read access? Can you run below code without error?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname test '/home/me/rrdb/data';
data test.class;
  set sashelp.class;
run;
proc delete data=test.class;
run;quit;
libname test clear;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 20 Aug 2022 12:11:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Setting-up-an-AUTOCALL-in-SAS-On-Demand-for-Academics/m-p/829487#M598</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2022-08-20T12:11:08Z</dc:date>
    </item>
    <item>
      <title>Re: Setting up an AUTOCALL in SAS On-Demand for Academics</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Setting-up-an-AUTOCALL-in-SAS-On-Demand-for-Academics/m-p/829520#M601</link>
      <description>&lt;P&gt;Are you able to&amp;nbsp; %include a macro definition, e.g.:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%include /home/me/rrdb/autocall/mymacro.sas&amp;nbsp;;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Assuming you're on linux, are the names of your .sas files all lower case?&amp;nbsp; (Linux SAS won't find autocall macros where the file name has upper case letters).&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you try testing the code in a fresh session?&amp;nbsp; The default SAS session has option NOMRECALL set, so if it looks for an autocall macro once and can't find it, it will never look again (even if you've updated the autocall path).&amp;nbsp; You might want to set options MRECALL while debugging the autocall library.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In this blog posts, Ron Cody shows one way to set up the an autocall library for SODA:&amp;nbsp;&lt;A href="https://blogs.sas.com/content/sgf/2022/01/27/sas-auto-call-facility/" target="_blank"&gt;https://blogs.sas.com/content/sgf/2022/01/27/sas-auto-call-facility/&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;</description>
      <pubDate>Sat, 20 Aug 2022 20:24:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Setting-up-an-AUTOCALL-in-SAS-On-Demand-for-Academics/m-p/829520#M601</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2022-08-20T20:24:45Z</dc:date>
    </item>
    <item>
      <title>Re: Setting up an AUTOCALL in SAS On-Demand for Academics</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Setting-up-an-AUTOCALL-in-SAS-On-Demand-for-Academics/m-p/829544#M603</link>
      <description>&lt;P&gt;This works for me on SAS On Demand:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;create a directory called sasautos in my Home directory&lt;/LI&gt;
&lt;LI&gt;store this code there under the name test.sas (all lowercase!)&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro test;
%put Test worked!;
%mend;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;then run this program:&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options mautosource sasautos=("~/sasautos" SASAUTOS);

%test&lt;/CODE&gt;&lt;/PRE&gt;
resulting in this log:&lt;BR /&gt;
&lt;PRE&gt; 68         
 69         options mautosource sasautos=("~/sasautos");
 70         
 71         %test
 Test worked!
&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;The ~ shortcut will work on all current UNIX systems. It points to the same location as the $HOME environment variable.&lt;/P&gt;</description>
      <pubDate>Sun, 21 Aug 2022 09:37:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Setting-up-an-AUTOCALL-in-SAS-On-Demand-for-Academics/m-p/829544#M603</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-08-21T09:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: Setting up an AUTOCALL in SAS On-Demand for Academics</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Setting-up-an-AUTOCALL-in-SAS-On-Demand-for-Academics/m-p/829596#M606</link>
      <description>&lt;P&gt;Without wanting to overwrite the SASAUTOS library, Ron Cody's solution works like a charm:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://blogs.sas.com/content/sgf/2022/01/27/sas-auto-call-facility/" target="_blank" rel="nofollow noopener noreferrer"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="AutoCall6.jpg" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/74557i3B0968D6A1CF8EFE/image-size/large?v=v2&amp;amp;px=999" role="button" title="AutoCall6.jpg" alt="AutoCall6.jpg" /&gt;&lt;/span&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2022 02:40:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Setting-up-an-AUTOCALL-in-SAS-On-Demand-for-Academics/m-p/829596#M606</guid>
      <dc:creator>derekmor54</dc:creator>
      <dc:date>2022-08-22T02:40:35Z</dc:date>
    </item>
  </channel>
</rss>

