One Response to Documenting Information Maps

  1. Chris Hemedinger on February 13, 2011 at 6:38 am

    Shane,

    SASIOIME and INFOMAPS are the same thing, just nicknames for each other. But you are correct that my example won’t work on SAS 9.1.3, because it uses newer features available only in 9.2.

    However, in SAS 9.1.3 you can use PROC CONTENTS to get some additional information. Use this ODS statement ahead of the PROC CONTENTS:

    libname imap sasioime … /*additional options*/;

    ods output ‘Information Maps’n=WORK.FILTERS;
    proc contents data=imap.’map_name_here’n out=WORK.ITEMS;
    run;

    Chris

Leave a Reply

Your email address will not be published. Required fields are marked *

*