<?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: Unable to view log while running SAS program in batch within a Shell on Unix through SAS EG in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/248901#M17626</link>
    <description>&lt;P&gt;Syntax looks right to me.&amp;nbsp; And you're sure the SAS code is running? (if you delete the .lst file, it will be created when you call the script?).&amp;nbsp; Any chance runpgm.log shows anything interesting?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have terminal access to the Unix server, I would try running the sas invocation command there, and see if it creates the log file.&amp;nbsp; Then could back up and run the script and see if it also creates the log file.&amp;nbsp;&amp;nbsp;Then go back&amp;nbsp;to EG.&amp;nbsp; Just to see where along the process it stops working.&lt;/P&gt;</description>
    <pubDate>Tue, 09 Feb 2016 16:13:25 GMT</pubDate>
    <dc:creator>Quentin</dc:creator>
    <dc:date>2016-02-09T16:13:25Z</dc:date>
    <item>
      <title>Unable to view log while running SAS program in batch within a Shell on Unix through SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/248879#M17623</link>
      <description>&lt;P&gt;Good morning...!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've the following code that I am trying to test by running a Unix shell invoking SAS batch run as shown below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;(/cml_jobs/cim/dev/users/k85671/scripts/efdwpgm1.sas)&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* SAS code I am trying to test */
proc print data=sashelp.class;
run;
data _null_;
	a=today();
	drop a;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The script that runs this code is below&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;(/cml_jobs/cim/dev/users/k85671/scripts/runpgm.sh&amp;nbsp;)&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;sas -noterminal -log /cml_jobs/cim/dev/users/k85671/scripts/efdwpgm1.log -print /cml_jobs/cim/dev/users/k85671/scripts/efdwpgm1.lst /cml_jobs/cim/dev/users/k85671/scripts/efdwpgm1.sas&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The EG code that calls this script above is below&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro m;
	%sysexec %str(
		/cml_jobs/cim/dev/users/k85671/scripts/runpgm.sh &amp;gt; /cml_jobs/cim/dev/users/k85671/scripts/runpgm.log
);%mend m;
%m;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;After I run the EG code, I see the "efdwpgm.lst" however, I don't see the "efdwpgm1.log"&amp;nbsp;in the directory.&amp;nbsp;&amp;nbsp; Is my syntax incorrect?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would appreciate any insight into this.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 15:35:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/248879#M17623</guid>
      <dc:creator>kannand</dc:creator>
      <dc:date>2016-02-09T15:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to view log while running SAS program in batch within a Shell on Unix through SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/248881#M17625</link>
      <description>&lt;P&gt;Investigate LOGPARM and ALTLOG system options.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 15:38:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/248881#M17625</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-02-09T15:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to view log while running SAS program in batch within a Shell on Unix through SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/248901#M17626</link>
      <description>&lt;P&gt;Syntax looks right to me.&amp;nbsp; And you're sure the SAS code is running? (if you delete the .lst file, it will be created when you call the script?).&amp;nbsp; Any chance runpgm.log shows anything interesting?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have terminal access to the Unix server, I would try running the sas invocation command there, and see if it creates the log file.&amp;nbsp; Then could back up and run the script and see if it also creates the log file.&amp;nbsp;&amp;nbsp;Then go back&amp;nbsp;to EG.&amp;nbsp; Just to see where along the process it stops working.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 16:13:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/248901#M17626</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2016-02-09T16:13:25Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to view log while running SAS program in batch within a Shell on Unix through SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/248941#M17627</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19879"&gt;@Quentin﻿&lt;/a&gt; and &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13674"&gt;@LinusH﻿&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I ran the batch run command on Unix as-is, the program ran and created the log file. No issues...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;btw - runpgm.log file from the script was empty when I ran the script before which I did not mention earlier.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am currently going through the LOG and ALTLOG parms suggested by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13674"&gt;@LinusH﻿&lt;/a&gt;to see if there is anything that can solve this issue...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 16:46:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/248941#M17627</guid>
      <dc:creator>kannand</dc:creator>
      <dc:date>2016-02-09T16:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to view log while running SAS program in batch within a Shell on Unix through SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/248972#M17628</link>
      <description>&lt;P&gt;Since invoking the batch job from command prompt worked, we know it's not a problem with batch sas or permissions, or the syntax of the SAS command.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did running the shell script from command prompt also work?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it does, then the problem would seem to be calling the shell script from EG.&lt;/P&gt;
&lt;P&gt;It it does not, then the problem is perhaps somehow relating to the shellscript.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I usually put my paths in quotes, you might try that, just for fun, but it shouldn't be required in this case since there are no spaces in your paths.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 17:28:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/248972#M17628</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2016-02-09T17:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to view log while running SAS program in batch within a Shell on Unix through SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/248990#M17629</link>
      <description>&lt;P&gt;Yes, running the shell script from command prompt&amp;nbsp;worked. I was able to see the log file updated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The log file is not updated when calling the shell script from EG. However, the .lst file is updated with refreshed listing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I added the quotes as you recommended (pasted below)&amp;nbsp;and ran from EG&amp;nbsp; -&amp;nbsp; the log is still not updating but the list&amp;nbsp;updates.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;sas -noterminal -log &lt;/FONT&gt;&lt;FONT face="Lucida Console" size="2"&gt;'&lt;/FONT&gt;&lt;FONT size="2"&gt;/cml_jobs/cim/dev/users/k85671/scripts/efdwpgm1.log&lt;/FONT&gt;&lt;FONT face="Lucida Console" size="2"&gt;'&lt;/FONT&gt;&lt;FONT size="2"&gt; -print &lt;/FONT&gt;&lt;FONT face="Lucida Console" size="2"&gt;'&lt;/FONT&gt;&lt;FONT size="2"&gt;/cml_jobs/cim/dev/users/k85671/scripts/efdwpgm1.lst&lt;/FONT&gt;&lt;FONT face="Lucida Console" size="2"&gt;'&lt;/FONT&gt; &lt;FONT face="Lucida Console" size="2"&gt;'&lt;/FONT&gt;&lt;FONT size="2"&gt;/cml_jobs/cim/dev/users/k85671/scripts/efdwpgm1.sas&lt;/FONT&gt;&lt;FONT face="Lucida Console" size="2"&gt;'&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 17:51:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/248990#M17629</guid>
      <dc:creator>kannand</dc:creator>
      <dc:date>2016-02-09T17:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to view log while running SAS program in batch within a Shell on Unix through SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/248994#M17631</link>
      <description>I'm flummoxed.  Just for fun, I would try taking the %sysexec out of the macro, and see if that works.  Maybe try calling the shell script from EG with systask or X statement.  I don't think I'm going to be much help.  Very odd.</description>
      <pubDate>Tue, 09 Feb 2016 17:58:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/248994#M17631</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2016-02-09T17:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to view log while running SAS program in batch within a Shell on Unix through SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/248996#M17632</link>
      <description>&lt;P&gt;Thanks for your trial suggestions &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19879"&gt;@Quentin﻿&lt;/a&gt;. I tried to run the script using systask (pasted below), the log is still not updated but the list is updated...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;systask&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;command&lt;/FONT&gt; &lt;FONT color="#800080" face="Courier New" size="3"&gt;"/cml_jobs/cim/dev/users/k85671/scripts/runpgm.sh"&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 18:07:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/248996#M17632</guid>
      <dc:creator>kannand</dc:creator>
      <dc:date>2016-02-09T18:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to view log while running SAS program in batch within a Shell on Unix through SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/248998#M17633</link>
      <description>&lt;P&gt;First step in debugging this type of issue is to not use %SYSEXEC, SYSTEM, X, or other commands to run the OS comand.&lt;/P&gt;
&lt;P&gt;Instead run it via a PIPE in a data step. That way you can see the error messages that the command is generating.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
   infile %sysfunc(quote(
  /cml_jobs/cim/dev/users/k85671/scripts/runpgm.sh &amp;gt; cml_jobs/cim/dev/users/k85671/scripts/runpgm.log
   )) pipe ;
   input;
   put _infile_;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 09 Feb 2016 18:09:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/248998#M17633</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2016-02-09T18:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to view log while running SAS program in batch within a Shell on Unix through SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/249005#M17635</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom﻿&lt;/a&gt;. I just tried the pipes and didn't see any errors but the issue still persists. I still don't see the saslog.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;24         options nocenter obs=max mlogic mprint symbolgen msglevel=i errors=1;
25         
26         data _null_;
27            infile %sysfunc(quote(
28           /cml_jobs/cim/dev/users/k85671/scripts/runpgm.sh &amp;gt; /cml_jobs/cim/dev/users/k85671/scripts/runpgm.log
29            )) pipe ;
30            input;
31            put _infile_;
32         run;

NOTE: The infile "/cml_jobs/cim/dev/users/k85671/scripts/runpgm.sh &amp;gt; /cml_jobs/cim/dev/users/k85671/scripts/runpgm.log" is:
      Pipe command="/cml_jobs/cim/dev/users/k85671/scripts/runpgm.sh &amp;gt; /cml_jobs/cim/dev/users/k85671/scripts/runpgm.log"

NOTE: 0 records were read from the infile "/cml_jobs/cim/dev/users/k85671/scripts/runpgm.sh &amp;gt; 
      /cml_jobs/cim/dev/users/k85671/scripts/runpgm.log".
NOTE: DATA statement used (Total process time):
      real time           1.63 seconds
      cpu time            0.01 seconds
      &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 18:41:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/249005#M17635</guid>
      <dc:creator>kannand</dc:creator>
      <dc:date>2016-02-09T18:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to view log while running SAS program in batch within a Shell on Unix through SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/249017#M17638</link>
      <description>&lt;P&gt;Either look at the file (&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;cml_jobs&lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;cim&lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dev&lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;users&lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;k85671&lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;scripts&lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;runpgm&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;log&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;) that you redirected the output to. &amp;nbsp;Or remove the redirection from the command you are running.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also try running the commands in the script directly instead of calling the script. &amp;nbsp;Perhaps the individual commands in the script file are not duing what you expected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 18:36:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/249017#M17638</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2016-02-09T18:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to view log while running SAS program in batch within a Shell on Unix through SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/249021#M17640</link>
      <description>&lt;P&gt;Please try running the actual call to launch &amp;nbsp;SAS instead of the call to the script. Or at least post the script and any output that it redirected to that log file. &amp;nbsp;Are you sure that&amp;nbsp;you are not directing both the SASLOG and the output of the shell script to the same log file? &amp;nbsp;That would cause trouble. &amp;nbsp;Try using the -ALTLOG option to direct another copy of the the SAS log to another file.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 18:48:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/249021#M17640</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2016-02-09T18:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to view log while running SAS program in batch within a Shell on Unix through SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/249030#M17641</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13674"&gt;@LinusH﻿&lt;/a&gt;&amp;nbsp;&amp;amp; &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom﻿&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you were correct. It took a while for me to research and get the syntax and test this ALTLOG option. It did the job.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All I had to do was change -log to -altlog and the rest of the command was the same.... I still wonder where the original log was being written to. I've opened a tracking# with SAS... will see what their advice is...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You guys are awesome... !!! You are real code doctors....kudos.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 19:10:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/249030#M17641</guid>
      <dc:creator>kannand</dc:creator>
      <dc:date>2016-02-09T19:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to view log while running SAS program in batch within a Shell on Unix through SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/249031#M17642</link>
      <description>&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt; the big surprise to me is that he said when he invoked the script from command prompt, it worked. I assume this means he invoked it with the same command as shown in the SAS macro, redirecting the output.</description>
      <pubDate>Tue, 09 Feb 2016 19:14:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/249031#M17642</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2016-02-09T19:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to view log while running SAS program in batch within a Shell on Unix through SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/249032#M17643</link>
      <description>Wow, that is bizarre (to me at least).  Can't think why -altlog would work but not -log.  Please post if you learn more from tech support.  &lt;BR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13674"&gt;@LinusH&lt;/a&gt;, curious why you suspected -altlog would work better than -log?</description>
      <pubDate>Tue, 09 Feb 2016 19:17:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/249032#M17643</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2016-02-09T19:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to view log while running SAS program in batch within a Shell on Unix through SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/249042#M17644</link>
      <description>&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19879"&gt;@Quentin&lt;/a&gt;: to be honest. It's like something you learn ad a kid, but can't always explain. So this is something I learned from my early SAS days, but didn't remember the bits of it.</description>
      <pubDate>Tue, 09 Feb 2016 19:50:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Unable-to-view-log-while-running-SAS-program-in-batch-within-a/m-p/249042#M17644</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-02-09T19:50:52Z</dc:date>
    </item>
  </channel>
</rss>

