<?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: Viewing and Setting System Options in Enterprise Guide 6.1 in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Viewing-and-Setting-System-Options-in-Enterprise-Guide-6-1/m-p/267551#M18537</link>
    <description>&lt;P&gt;Maybe the macro you are calling is a Stored Compiled Macro using the SECURE option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or the author of the macro sets the system options back.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bruno&lt;/P&gt;</description>
    <pubDate>Mon, 02 May 2016 08:25:42 GMT</pubDate>
    <dc:creator>BrunoMueller</dc:creator>
    <dc:date>2016-05-02T08:25:42Z</dc:date>
    <item>
      <title>Viewing and Setting System Options in Enterprise Guide 6.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Viewing-and-Setting-System-Options-in-Enterprise-Guide-6-1/m-p/267455#M18534</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm a newbie on Enterprise Guide 6.1, so I'm still finding my way around it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my code, I'm setting the system options as follows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;options mprint symbolgen source2 mlogic serror mcompilenote=all yearcutoff=&lt;STRONG&gt;1980&lt;/STRONG&gt;;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, even though I'm using the "mprint" option, when I execute a macro program, the log doesn't show the SAS code generated by macro execution. Somehow, I'm unable to set it. Can you please guide me how to set system options in Enterprise Guide 6.1?&lt;/P&gt;</description>
      <pubDate>Sat, 30 Apr 2016 21:03:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Viewing-and-Setting-System-Options-in-Enterprise-Guide-6-1/m-p/267455#M18534</guid>
      <dc:creator>asimraja</dc:creator>
      <dc:date>2016-04-30T21:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: Viewing and Setting System Options in Enterprise Guide 6.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Viewing-and-Setting-System-Options-in-Enterprise-Guide-6-1/m-p/267470#M18535</link>
      <description>&lt;P&gt;Some options for EG are controlled through the preferences menu.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 01 May 2016 02:06:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Viewing-and-Setting-System-Options-in-Enterprise-Guide-6-1/m-p/267470#M18535</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-05-01T02:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: Viewing and Setting System Options in Enterprise Guide 6.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Viewing-and-Setting-System-Options-in-Enterprise-Guide-6-1/m-p/267491#M18536</link>
      <description>&lt;P&gt;You're doing it right...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I submit:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;options&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;mprint&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;symbolgen&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;source2&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;mlogic&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;serror&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;mcompilenote&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=all &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;yearcutoff&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;1980&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;%macro&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; &lt;STRONG&gt;&lt;I&gt;p&lt;/I&gt;&lt;/STRONG&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;proc print data=sashelp.class;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;%mend&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;%&lt;STRONG&gt;&lt;I&gt;p&lt;/I&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is the log I get.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;29 %p&lt;/P&gt;
&lt;P&gt;MLOGIC(P): Beginning execution.&lt;/P&gt;
&lt;P&gt;MPRINT(P): proc print data=sashelp.class;&lt;/P&gt;
&lt;P&gt;MPRINT(P): run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try submitting the same code, and see what you get. I'm somewhat mystified.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Sun, 01 May 2016 12:28:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Viewing-and-Setting-System-Options-in-Enterprise-Guide-6-1/m-p/267491#M18536</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2016-05-01T12:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: Viewing and Setting System Options in Enterprise Guide 6.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Viewing-and-Setting-System-Options-in-Enterprise-Guide-6-1/m-p/267551#M18537</link>
      <description>&lt;P&gt;Maybe the macro you are calling is a Stored Compiled Macro using the SECURE option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or the author of the macro sets the system options back.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bruno&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2016 08:25:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Viewing-and-Setting-System-Options-in-Enterprise-Guide-6-1/m-p/267551#M18537</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2016-05-02T08:25:42Z</dc:date>
    </item>
  </channel>
</rss>

