<?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: Eventus on SAS showing some error message in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Eventus-on-SAS-showing-some-error-message/m-p/901666#M356325</link>
    <description>&lt;P&gt;Hi, i tried to add&amp;nbsp;&lt;/P&gt;&lt;PRE class=""&gt;&lt;CODE&gt;options cmdmac implmac ;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;before the Eventus code and remain others the same but still got the same error message. Is it because i used Mac book pro to install windows and SAS? i run the original code at my friend's computer which is a windows system and it works.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 06 Nov 2023 03:11:10 GMT</pubDate>
    <dc:creator>liangyue1</dc:creator>
    <dc:date>2023-11-06T03:11:10Z</dc:date>
    <item>
      <title>Eventus on SAS showing some error message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Eventus-on-SAS-showing-some-error-message/m-p/901615#M356305</link>
      <description>&lt;P&gt;Hi i am running an event study in SAS using Eventus. but it showed me this. i already have uploaded file but the Eventus command is not working.&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;31   Eventus fff=ff.factors_daily page=wide;
     -------
     180

ERROR 180-322: Statement is not valid or it is used out of proper order.

32       Request autodate Est=-30 estlen=255;
         -------
         180

ERROR 180-322: Statement is not valid or it is used out of proper order.

33       Windows
         -------
         180
33 ! (-3,0)(-3,1)
33 ! ;

ERROR 180-322: Statement is not valid or it is used out of proper order.

34       EVTSTUDY OutWin=work.ev_dws OutParam=ev_dium pre=8 post=8  famafrench
         --------
         180
34 ! momentum tail=2 twostep   ranktest cda wsr both PVALUE
ERROR 180-322: Statement is not valid or it is used out of proper order.
35           package=1 OUTSAS=work.prodresults;

36   x 'rm demorequest.txt'
36 !                       ;
NOTE: Remote submit to WRDS complete.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 05 Nov 2023 10:53:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Eventus-on-SAS-showing-some-error-message/m-p/901615#M356305</guid>
      <dc:creator>liangyue1</dc:creator>
      <dc:date>2023-11-05T10:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: Eventus on SAS showing some error message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Eventus-on-SAS-showing-some-error-message/m-p/901616#M356306</link>
      <description>&lt;P&gt;Please show the complete log so we know which procedure you are using.&lt;/P&gt;</description>
      <pubDate>Sun, 05 Nov 2023 11:09:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Eventus-on-SAS-showing-some-error-message/m-p/901616#M356306</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-11-05T11:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: Eventus on SAS showing some error message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Eventus-on-SAS-showing-some-error-message/m-p/901621#M356308</link>
      <description>&lt;P&gt;After further research, it looks like you are trying this in an environment where Eventus is not installed/available.&lt;/P&gt;</description>
      <pubDate>Sun, 05 Nov 2023 12:15:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Eventus-on-SAS-showing-some-error-message/m-p/901621#M356308</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-11-05T12:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: Eventus on SAS showing some error message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Eventus-on-SAS-showing-some-error-message/m-p/901627#M356311</link>
      <description>&lt;P&gt;When WRDS first added Eventus to its SAS-accessible software package, it chose to allow users to call the eventus macros without use of the leading % that is almost universally required for macro calls.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This requirement is controlled by the IMPLMAC and CMDMAC options, which typically default to require the leading percent sign, as here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;2256  proc options option=(cmdmac implmac);run;

    SAS (r) Proprietary Software Release 9.4  TS1M6

 NOCMDMAC          Does not check window environment commands for command-style macros.
 NOIMPLMAC         Does not check for statement-style macros.
&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;I don't recall whether EVENTUS needed both of these to be reset, but I recommend you insert this statement before your EVENTUS code,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options cmdmac implmac ;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;See if that works.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can go back to defaults options later in the program by&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options nocmdmac noimplmac ;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;One can probably use the EVENTUS macros with a leading"%", but I think you'd have to change how you specify the parameters,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Nov 2023 19:03:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Eventus-on-SAS-showing-some-error-message/m-p/901627#M356311</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2023-11-05T19:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: Eventus on SAS showing some error message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Eventus-on-SAS-showing-some-error-message/m-p/901666#M356325</link>
      <description>&lt;P&gt;Hi, i tried to add&amp;nbsp;&lt;/P&gt;&lt;PRE class=""&gt;&lt;CODE&gt;options cmdmac implmac ;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;before the Eventus code and remain others the same but still got the same error message. Is it because i used Mac book pro to install windows and SAS? i run the original code at my friend's computer which is a windows system and it works.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2023 03:11:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Eventus-on-SAS-showing-some-error-message/m-p/901666#M356325</guid>
      <dc:creator>liangyue1</dc:creator>
      <dc:date>2023-11-06T03:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: Eventus on SAS showing some error message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Eventus-on-SAS-showing-some-error-message/m-p/901667#M356326</link>
      <description>&lt;P&gt;but i do have access to Eventus under my WRDS acccount&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2023 03:11:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Eventus-on-SAS-showing-some-error-message/m-p/901667#M356326</guid>
      <dc:creator>liangyue1</dc:creator>
      <dc:date>2023-11-06T03:11:56Z</dc:date>
    </item>
    <item>
      <title>Re: Eventus on SAS showing some error message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Eventus-on-SAS-showing-some-error-message/m-p/901747#M356359</link>
      <description>&lt;P&gt;Installing SAS does NOT mean you have included Eventus, which is a third-party proprietary product.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I presume it is still was composed of SAS macro for financial event analysis (I used it a long time ago).&amp;nbsp; It looks like&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;is correct - you just don't have those macros.&amp;nbsp; &amp;nbsp;You can take a look at&amp;nbsp;&lt;A href="http://www.eventstudy.com/index.html" target="_self"&gt;http://www.eventstudy.com/index.html&lt;/A&gt;&amp;nbsp;to see whether it is worth your while to get.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2023 16:09:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Eventus-on-SAS-showing-some-error-message/m-p/901747#M356359</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2023-11-06T16:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: Eventus on SAS showing some error message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Eventus-on-SAS-showing-some-error-message/m-p/902688#M356747</link>
      <description>&lt;P&gt;I actuallly have access to Eventus. I tried to add&amp;nbsp;%include '/wrds/eventus/pgm/evinit.sas'; before my Eventus command and it gave me this:&lt;/P&gt;&lt;P&gt;13 %include '/wrds/eventus/pgm/evinit.sas';&lt;BR /&gt;NOTE: Libref CRLCMACR was successfully assigned as follows:&lt;BR /&gt;Engine: V9&lt;BR /&gt;Physical Name: /wrds/eventus/pgm/crlcmacr&lt;BR /&gt;NOTE: Libref VOLINDEX was successfully assigned as follows:&lt;BR /&gt;Engine: V9&lt;BR /&gt;Physical Name: /wrds/eventus/sasdata&lt;BR /&gt;43 Eventus fff=ff.factors_daily page=wide;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Eventus (R)&lt;BR /&gt;Software for Event Studies and Financial Market Research&lt;BR /&gt;Copyright (c) 1989-2023 Cowan Research, L.C.&lt;/P&gt;&lt;P&gt;This software is licensed and not sold. All use of the software&lt;BR /&gt;is subject to the license. Please remember the investment of time&lt;BR /&gt;and effort that went into this product and respect our copyright.&lt;BR /&gt;As with any software product, errors are possible despite care-&lt;BR /&gt;ful testing. Results are believed accurate but not guaranteed&lt;BR /&gt;except as expressly stated in the software license.&lt;/P&gt;&lt;P&gt;---------------------------------------------------------------&lt;BR /&gt;Eventus is the product of Cowan Research, L.C.&lt;BR /&gt;Ask Eventus questions and get code samples at&lt;BR /&gt;&lt;A href="http://support.eventstudy.com/" target="_blank"&gt;http://support.eventstudy.com/&lt;/A&gt;&lt;BR /&gt;---------------------------------------------------------------&lt;/P&gt;&lt;P&gt;For use by current Eventus subscriber entities and their authorized users only.&lt;BR /&gt;WARNING: Eventus license will expire on November 14, 2023 .&lt;BR /&gt;This Eventus run started November 12, 2023 01:45:33 AM.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;NOTE: Remaining Eventus software statements will be skipped.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;WARNING: Eventus is stopping SAS here because of the above error.&lt;/P&gt;&lt;P&gt;NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414&lt;BR /&gt;NOTE: The SAS System used:&lt;BR /&gt;real time 5:34.32&lt;BR /&gt;cpu time 0.22 seconds&lt;/P&gt;&lt;P&gt;NOTE: Remote submit to WRDS complete.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 12 Nov 2023 06:49:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Eventus-on-SAS-showing-some-error-message/m-p/902688#M356747</guid>
      <dc:creator>liangyue1</dc:creator>
      <dc:date>2023-11-12T06:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: Eventus on SAS showing some error message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Eventus-on-SAS-showing-some-error-message/m-p/902690#M356748</link>
      <description>&lt;P&gt;So something is happening within Eventus itself which keeps it from properly starting up. You should get into contact with the WRDS people, they should be able to diagnose the problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that all calls to Eventus have to be made within an RSUBMIT to WRDS.&lt;/P&gt;</description>
      <pubDate>Sun, 12 Nov 2023 08:04:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Eventus-on-SAS-showing-some-error-message/m-p/902690#M356748</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-11-12T08:04:49Z</dc:date>
    </item>
  </channel>
</rss>

