<?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: Use of Macros under IVEware in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Use-of-Macros-under-IVEware/m-p/69782#M15117</link>
    <description>You still have not resolved the OPTIONS SASAUTOS= and as recommended used a FILENAME declaration for the location of your IVEware macros.  The OPTIONS SET= will sent an environment variable but for what purpose?  Do you expect to reference it in your SASAUTOS= OPTIONS definition?  It's unclear where you received guidance for this coding technique at all, frankly.&lt;BR /&gt;
&lt;BR /&gt;
As a typical technique to reference your application's SAS AUTOCALL macros, you declare a SAS FILENAME with a &lt;FILEREF&gt; specified and the folder/directory location in quotations, as mentioned before.&lt;BR /&gt;
&lt;BR /&gt;
Suggest you refer to the FILENAME documentation and also the OPTIONS SASAUTOS=(...) definition.  Here is a Google advanced search argument which should generate some matches for you to reference:&lt;BR /&gt;
&lt;BR /&gt;
macro language using autocall site:sas.com&lt;BR /&gt;
&lt;BR /&gt;
Until you get your SASAUTOS= setting defined correctly to point to the location where you have your IVEware SAS application programs installed, you will not be able to run your program.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;/FILEREF&gt;</description>
    <pubDate>Tue, 08 Sep 2009 02:12:07 GMT</pubDate>
    <dc:creator>sbb</dc:creator>
    <dc:date>2009-09-08T02:12:07Z</dc:date>
    <item>
      <title>Use of Macros under IVEware</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-of-Macros-under-IVEware/m-p/69779#M15114</link>
      <description>I am a relatively new SAS user.  I need to use %impute and %describe for a missing data imputation under IVEware.  I get the "apparent invocation of macro (impute or describe or put) not resolved.  What am I doing wrong?  Here is part of my program:&lt;BR /&gt;
&lt;BR /&gt;
options set=SRCLIB  "C:\Program Files\Srclib"                                                                                           &lt;BR /&gt;
sasautos=('!SRCLIB' sasautos) mautosource;                                                                                       &lt;BR /&gt;
   LIBNAME   'C:\MYINDIR';                                                                                  LIBNAME MYOUT  'C:\MYOUTDIR';                &lt;BR /&gt;
DATA  _NULL_;                                                                                                                           &lt;BR /&gt;
INFILE DATALINES;                                                                                                                       &lt;BR /&gt;
FILENAME MYSETUP  "IMPUTE SET;                                                                                                         &lt;BR /&gt;
FILE  MYSETUP;                                                                                                     INPUT;                 &lt;BR /&gt;
PUT  _INFILE_;                                                                                                          DATALINES4;                                                                                                    TITLE MULTIPLE IMPUTATION;                                           &lt;BR /&gt;
DATAIN MYLIB.COMBINED;  &lt;BR /&gt;
DATAOUT MYOUT.IMPUTED1;                                                                                          MDATA IMPUTE;                                  &lt;BR /&gt;
 CONTINUOUS YEARCAN MONCAN YEARHIV MONHIV YEARAIDS MONAIDS  AGEHIV AGECAN DEATHMM AGEAIDS DEATHMM  YEARDEC;                                                                                                      CATEGORICAL GENDER RACE  DEC;                                                                                                           &lt;BR /&gt;
TRANSFER MATCH CASE ID DEATHDD DAYCAN DAYHIV DAYAIDS TUMORGR                                                                            &lt;BR /&gt;
ICDO PRIMSITE MORPHOL SSTAGE RADIAD SURGERY CHEMO CD4 DAYSHAC                                                                           &lt;BR /&gt;
DAYSHAA CAGECAN CAGEAIDS ICDBEH AIDSCASE YRMOCAN YRMOHIV ETHNIC;                                                                        &lt;BR /&gt;
RESTRICT AGECAN (YEARCAN  NE  "    ")                                                                                                     AGEAIDS (YEARAIDS  NE  "    ");                                                                               &lt;BR /&gt;
ITERATIONS 10;                                                                                                                   MULTIPLES 5;  &lt;BR /&gt;
SEED 100;                                                                                                                   RUN ;       &lt;BR /&gt;
;;;;

Message was edited by: Rose Marie Martin</description>
      <pubDate>Mon, 07 Sep 2009 19:09:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-of-Macros-under-IVEware/m-p/69779#M15114</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-09-07T19:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: Use of Macros under IVEware</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-of-Macros-under-IVEware/m-p/69780#M15115</link>
      <description>Suggest the Google search to locate a suitable example for your SAS application for Iveware - you will need to set SASAUTOS= but also you need a FILENAME &lt;FILEREF&gt; to declare the program/file directory/folder location for your macro programs.&lt;BR /&gt;
&lt;BR /&gt;
Google search suggested argument: sas impute describe macros iveware&lt;BR /&gt;
&lt;BR /&gt;
Also, the SAS support &lt;A href="http://support.sas.com/" target="_blank"&gt;http://support.sas.com/&lt;/A&gt;  website has SAS-hosted documentation and supplemental technical and conference reference material on use of FILENAME and the OPTIONS SASAUTOS=  commands.&lt;BR /&gt;
&lt;BR /&gt;
After this, if you still have error conditions, suggest you reply to your post with the actual SAS log showing warnings/errors received, rather than attempting to describe any error simply with your partial SAS program code.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;/FILEREF&gt;</description>
      <pubDate>Mon, 07 Sep 2009 19:47:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-of-Macros-under-IVEware/m-p/69780#M15115</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-09-07T19:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: Use of Macros under IVEware</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-of-Macros-under-IVEware/m-p/69781#M15116</link>
      <description>Thanks for your help.  I am still not able to invoke the macros, but I have stored them where I think they belong.   Here is the latest log:&lt;BR /&gt;
&lt;BR /&gt;
options set=SRCLIB  "C:\Program Files\Srclib\ive_sas_windows"&lt;BR /&gt;
882         sasautos = (c:\mymacros&lt;BR /&gt;
883          !C:\Program Files\Srclib&lt;BR /&gt;
884          !c:\documents and settings\rose marie)&lt;BR /&gt;
885&lt;BR /&gt;
886   mautosource;&lt;BR /&gt;
887&lt;BR /&gt;
888  LIBNAME MYLIB "C:\PROGRAM FILES\SRCLIB\COMBINED.DAT";&lt;BR /&gt;
NOTE: Library MYLIB does not exist.&lt;BR /&gt;
889  PROC COPY IN=MYLIB OUT=WORK;&lt;BR /&gt;
WARNING: The Base Product product with which COPY is associated will expire within 30 days. Please contact your SAS installation representative to have it&lt;BR /&gt;
         renewed.&lt;BR /&gt;
890&lt;BR /&gt;
891  libname MYLIB  'C:\MYINDIR';&lt;BR /&gt;
NOTE: Libref MYLIB was successfully assigned as follows:&lt;BR /&gt;
      Engine:        V9&lt;BR /&gt;
      Physical Name: C:\MYINDIR&lt;BR /&gt;
892&lt;BR /&gt;
893  LIBNAME MYOUT  'C:\MYOUTDIR';&lt;BR /&gt;
NOTE: Libref MYOUT was successfully assigned as follows:&lt;BR /&gt;
      Engine:        V9&lt;BR /&gt;
      Physical Name: C:\MYOUTDIR&lt;BR /&gt;
894&lt;BR /&gt;
&lt;BR /&gt;
NOTE: Copying MYLIB.COMBINED to WORK.COMBINED (memtype=DATA).&lt;BR /&gt;
NOTE: There were 63213 observations read from the data set MYLIB.COMBINED.&lt;BR /&gt;
NOTE: The data set WORK.COMBINED has 63213 observations and 42 variables.&lt;BR /&gt;
NOTE: PROCEDURE COPY used (Total process time):&lt;BR /&gt;
      real time           1.01 seconds&lt;BR /&gt;
      cpu time            0.04 seconds&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
895  DATA _NULL_;&lt;BR /&gt;
WARNING: The Base Product product with which DATASTEP is associated will expire within 30 days. Please contact your SAS installation representative to have it&lt;BR /&gt;
         renewed.&lt;BR /&gt;
896  INFILE DATALINES;&lt;BR /&gt;
897  FILENAME MYSETUP  "IMPUTE SET";&lt;BR /&gt;
898  FILE MYSETUP;&lt;BR /&gt;
899  INPUT;&lt;BR /&gt;
900  PUT _INFILE_;&lt;BR /&gt;
901  DATALINES4;&lt;BR /&gt;
&lt;BR /&gt;
NOTE: The file MYSETUP is:&lt;BR /&gt;
      File Name=C:\Documents and Settings\Rose Marie\IMPUTE SET,&lt;BR /&gt;
      RECFM=V,LRECL=256&lt;BR /&gt;
&lt;BR /&gt;
NOTE: 20 records were written to the file MYSETUP.&lt;BR /&gt;
      The minimum record length was 80.&lt;BR /&gt;
      The maximum record length was 80.&lt;BR /&gt;
NOTE: DATA statement used (Total process time):&lt;BR /&gt;
      real time           0.29 seconds&lt;BR /&gt;
      cpu time            0.01 seconds&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
922  ;;;;&lt;BR /&gt;
923&lt;BR /&gt;
924  libname MYLIB  'C:\MYINDIR';&lt;BR /&gt;
NOTE: Libref MYLIB was successfully assigned as follows:&lt;BR /&gt;
      Engine:        V9&lt;BR /&gt;
      Physical Name: C:\MYINDIR&lt;BR /&gt;
925  LIBNAME MYOUT  'C:\MYOUTDIR';&lt;BR /&gt;
NOTE: Libref MYOUT was successfully assigned as follows:&lt;BR /&gt;
      Engine:        V9&lt;BR /&gt;
      Physical Name: C:\MYOUTDIR&lt;BR /&gt;
WARNING: Apparent invocation of macro IMPUTE not resolved.&lt;BR /&gt;
926&lt;BR /&gt;
927&lt;BR /&gt;
928  %IMPUTE (NAME=MYSETUP,DIR=C:\MYOUTDIR, SETUP=NEW);&lt;BR /&gt;
     -&lt;BR /&gt;
     180&lt;BR /&gt;
&lt;BR /&gt;
ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;
&lt;BR /&gt;
929&lt;BR /&gt;
930  TITLE MULTIPLE IMPUTATION;&lt;BR /&gt;
931&lt;BR /&gt;
932  DATAIN MYLIB.COMBINED;&lt;BR /&gt;
     ------&lt;BR /&gt;
     180&lt;BR /&gt;
&lt;BR /&gt;
ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;
&lt;BR /&gt;
933  DATAOUT MYOUT.IMPUTED1;&lt;BR /&gt;
     -------&lt;BR /&gt;
     180&lt;BR /&gt;
&lt;BR /&gt;
ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;
&lt;BR /&gt;
934  MDATA IMPUTE;&lt;BR /&gt;
     -----&lt;BR /&gt;
     180&lt;BR /&gt;
&lt;BR /&gt;
ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;
&lt;BR /&gt;
935&lt;BR /&gt;
936  CONTINUOUS YEARCAN MONCAN YEARHIV MONHIV YEARAIDS MONAIDS&lt;BR /&gt;
     ----------&lt;BR /&gt;
     180&lt;BR /&gt;
ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;
&lt;BR /&gt;
937  AGEHIV AGECAN AGEAIDS DEATHMM YEARDEC;&lt;BR /&gt;
&lt;BR /&gt;
938  CATEGORICAL GENDER RACE DEC;&lt;BR /&gt;
     -----------&lt;BR /&gt;
     180&lt;BR /&gt;
&lt;BR /&gt;
ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;
&lt;BR /&gt;
939  TRANSFER MATCH CASE ID DEATHDD DAYCAN DAYHIV DAYAIDS TUMORGR&lt;BR /&gt;
     --------&lt;BR /&gt;
     180&lt;BR /&gt;
ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;
&lt;BR /&gt;
940  ICDO PRIMSITE MORPHOL SSTAGE RADIAD SURGERY CHEMO CD4 DAYSHAC&lt;BR /&gt;
941  DAYSHAA CAGECAN CAGEAIDS ICDBEH AIDSCASE YRMOCAN YRMOHIV ETHNIC;&lt;BR /&gt;
&lt;BR /&gt;
942  RESTRICT AGECAN (YEARCAN NE  "    ")&lt;BR /&gt;
     --------&lt;BR /&gt;
     180&lt;BR /&gt;
ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;
&lt;BR /&gt;
943           AGEAIDS (YEARAIDS NE  "    ");&lt;BR /&gt;
&lt;BR /&gt;
944&lt;BR /&gt;
945&lt;BR /&gt;
946  ITERATIONS 10;&lt;BR /&gt;
     ----------&lt;BR /&gt;
     180&lt;BR /&gt;
&lt;BR /&gt;
ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;
&lt;BR /&gt;
947  MULTIPLES 5;&lt;BR /&gt;
     ---------&lt;BR /&gt;
     180&lt;BR /&gt;
&lt;BR /&gt;
ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;
&lt;BR /&gt;
948  SEED 100;&lt;BR /&gt;
     ----&lt;BR /&gt;
     180&lt;BR /&gt;
&lt;BR /&gt;
ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;
&lt;BR /&gt;
WARNING: Apparent invocation of macro PUTDATA not resolved.&lt;BR /&gt;
949  RUN ;&lt;BR /&gt;
950&lt;BR /&gt;
951&lt;BR /&gt;
952  %PUTDATA(NAME=MYSETUP,DIR=C:\MYOUTDIR,MULT=2,DATAOUT=MYOUT.IMPUTED2);&lt;BR /&gt;
     -&lt;BR /&gt;
     180&lt;BR /&gt;
&lt;BR /&gt;
ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;
&lt;BR /&gt;
WARNING: Apparent invocation of macro PUTDATA not resolved.&lt;BR /&gt;
953  %PUTDATA(NAME=MYSETUP,DIR=C:\MYOUTDIR,MULT=3,DATAOUT=MYOUT.IMPUTED2);&lt;BR /&gt;
     -&lt;BR /&gt;
     180&lt;BR /&gt;
&lt;BR /&gt;
ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;
&lt;BR /&gt;
WARNING: Apparent invocation of macro PUTDATA not resolved.&lt;BR /&gt;
954  %PUTDATA(NAME=MYSETUP,DIR=C:\MYOUTDIR,MULT=4,DATAOUT=MYOUT.IMPUTED2);&lt;BR /&gt;
     -&lt;BR /&gt;
     180&lt;BR /&gt;
&lt;BR /&gt;
ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;
&lt;BR /&gt;
WARNING: Apparent invocation of macro PUTDATA not resolved.&lt;BR /&gt;
955  %PUTDATA(NAME=MYSETUP,DIR=C:\MYOUTDIR,MULT=5,DATAOUT=MYOUT.IMPUTED2);&lt;BR /&gt;
     -&lt;BR /&gt;
     180&lt;BR /&gt;
&lt;BR /&gt;
ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;
&lt;BR /&gt;
WARNING: Apparent invocation of macro DESCRIBE not resolved.&lt;BR /&gt;
956&lt;BR /&gt;
957&lt;BR /&gt;
958&lt;BR /&gt;
959  %DESCRIBE  (SETUP=NEW,NAME=DISETUP,DIR=C:\MYOUTDIR);&lt;BR /&gt;
     -&lt;BR /&gt;
     180&lt;BR /&gt;
&lt;BR /&gt;
ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;
&lt;BR /&gt;
960  DATAIN  MYOUT.IMPUTED1&lt;BR /&gt;
     ------&lt;BR /&gt;
     180&lt;BR /&gt;
ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;
&lt;BR /&gt;
961          MYOUT.IMPUTED2&lt;BR /&gt;
962          MYOUT.IMPUTED3&lt;BR /&gt;
963          MYOUT.IMPUTED4&lt;BR /&gt;
964          MYOUT.IMPUTED5;&lt;BR /&gt;
&lt;BR /&gt;
965  PRINT DETAILS;&lt;BR /&gt;
     -----&lt;BR /&gt;
     180&lt;BR /&gt;
&lt;BR /&gt;
ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;
&lt;BR /&gt;
966  RUN;</description>
      <pubDate>Mon, 07 Sep 2009 21:55:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-of-Macros-under-IVEware/m-p/69781#M15116</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-09-07T21:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: Use of Macros under IVEware</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-of-Macros-under-IVEware/m-p/69782#M15117</link>
      <description>You still have not resolved the OPTIONS SASAUTOS= and as recommended used a FILENAME declaration for the location of your IVEware macros.  The OPTIONS SET= will sent an environment variable but for what purpose?  Do you expect to reference it in your SASAUTOS= OPTIONS definition?  It's unclear where you received guidance for this coding technique at all, frankly.&lt;BR /&gt;
&lt;BR /&gt;
As a typical technique to reference your application's SAS AUTOCALL macros, you declare a SAS FILENAME with a &lt;FILEREF&gt; specified and the folder/directory location in quotations, as mentioned before.&lt;BR /&gt;
&lt;BR /&gt;
Suggest you refer to the FILENAME documentation and also the OPTIONS SASAUTOS=(...) definition.  Here is a Google advanced search argument which should generate some matches for you to reference:&lt;BR /&gt;
&lt;BR /&gt;
macro language using autocall site:sas.com&lt;BR /&gt;
&lt;BR /&gt;
Until you get your SASAUTOS= setting defined correctly to point to the location where you have your IVEware SAS application programs installed, you will not be able to run your program.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;/FILEREF&gt;</description>
      <pubDate>Tue, 08 Sep 2009 02:12:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-of-Macros-under-IVEware/m-p/69782#M15117</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-09-08T02:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: Use of Macros under IVEware</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-of-Macros-under-IVEware/m-p/69783#M15118</link>
      <description>You still have not resolved the OPTIONS SASAUTOS= and as recommended used a FILENAME declaration for the location of your IVEware macros.  The OPTIONS SET= will sent an environment variable but for what purpose?  Do you expect to reference it in your SASAUTOS= OPTIONS definition?  It's unclear where you received guidance for this coding technique at all, frankly.&lt;BR /&gt;
&lt;BR /&gt;
As a typical technique to reference your application's SAS AUTOCALL macros, you declare a SAS FILENAME with a &lt;FILEREF&gt; specified and the folder/directory location in quotations, as mentioned before.&lt;BR /&gt;
&lt;BR /&gt;
Suggest you refer to the FILENAME documentation and also the OPTIONS SASAUTOS=(...) definition.  Here is a Google advanced search argument which should generate some matches for you to reference:&lt;BR /&gt;
&lt;BR /&gt;
macro language using autocall site:sas.com&lt;BR /&gt;
&lt;BR /&gt;
Until you get your SASAUTOS= setting defined correctly to point to the location where you have your IVEware SAS application programs installed, you will not be able to run your program.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;/FILEREF&gt;</description>
      <pubDate>Tue, 08 Sep 2009 02:12:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-of-Macros-under-IVEware/m-p/69783#M15118</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-09-08T02:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: Use of Macros under IVEware</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-of-Macros-under-IVEware/m-p/69784#M15119</link>
      <description>Make sure you have the mautosource option set (it should be by default unless it was previously turned off during your SAS session).&lt;BR /&gt;
&lt;BR /&gt;
options mautosource;&lt;BR /&gt;
&lt;BR /&gt;
If your macros are compiled stored macros you also need the mstored option.&lt;BR /&gt;
&lt;BR /&gt;
Then, as was previously mentioned, make sure your sasautos= option is correct.  You can either set this to a previously defined fileref or you can use a system path but the system path must be in quotes.&lt;BR /&gt;
&lt;BR /&gt;
Each macro needs to be stored in a separate file with a name that matches the macro name, e.g. impute.sas&lt;BR /&gt;
&lt;BR /&gt;
--Pat</description>
      <pubDate>Mon, 14 Sep 2009 14:26:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-of-Macros-under-IVEware/m-p/69784#M15119</guid>
      <dc:creator>PatrickG</dc:creator>
      <dc:date>2009-09-14T14:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: Use of Macros under IVEware</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-of-Macros-under-IVEware/m-p/69785#M15120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am way late to the party here. I will add this, in case it helps anyone else.&lt;/P&gt;&lt;P&gt;Did you run the program in Program Editor, as opposed to the Enhanced Program Editor? You must run it in the first, not the second.&lt;/P&gt;&lt;P&gt;Also, i have had more luck editing the config file instead of running the options command each time.&lt;/P&gt;&lt;P&gt;from &lt;A href="http://www.isr.umich.edu/src/smp/ive/ive_sas_install.html" title="http://www.isr.umich.edu/src/smp/ive/ive_sas_install.html"&gt;IVEware Installation Guide, SAS version&lt;/A&gt;&lt;/P&gt;&lt;P style="color: #000000; font-size: 13.3333330154419px;"&gt;Edit the configuration file to include the following lines in the user section, just above the warning "Install application edits below this line. User options should be added above this box comment."&lt;/P&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin-left: 28px; color: #000000; font-family: arial, helvetica, sans-serif; font-size: 13.3333330154419px;"&gt;&lt;P&gt;-set SRCLIB "C:\Program Files\Srclib" &lt;BR /&gt;-sasautos (!SRCLIB sasautos)&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jul 2015 20:44:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-of-Macros-under-IVEware/m-p/69785#M15120</guid>
      <dc:creator>codyo</dc:creator>
      <dc:date>2015-07-02T20:44:37Z</dc:date>
    </item>
  </channel>
</rss>

