<?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: Information Map Engine and no datasets in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/Information-Map-Engine-and-no-datasets/m-p/329213#M9666</link>
    <description>&lt;P&gt;Some questions:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;- does the metauser account have read/readmetadata access to that information map?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;- Have you tried some of the SAS samples (perhaps you're already working with these) -- &lt;A href="http://blogs.sas.com/content/sasdummy/2010/05/25/reporting-on-sas-information-maps/" target="_self"&gt;like this one for reporting&lt;/A&gt;, and this one with &lt;A href="http://blogs.sas.com/content/sasdummy/2011/06/25/which-tables-contribute-to-that-sas-information-map/" target="_self"&gt;PROC INFOMAPS&lt;/A&gt;?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When using EG, can you use &lt;STRONG&gt;File-&amp;gt;Open Information Map&lt;/STRONG&gt;? &amp;nbsp;If so, that will generate the code that you can use for reporting in other environments.&lt;/P&gt;</description>
    <pubDate>Wed, 01 Feb 2017 21:43:13 GMT</pubDate>
    <dc:creator>ChrisHemedinger</dc:creator>
    <dc:date>2017-02-01T21:43:13Z</dc:date>
    <item>
      <title>Information Map Engine and no datasets</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Information-Map-Engine-and-no-datasets/m-p/328790#M9652</link>
      <description>&lt;P&gt;Dear SAS Experts,&lt;/P&gt;&lt;P&gt;I got my Information Map up and running and want to use it in my SAS Base programs too but&lt;/P&gt;&lt;P&gt;somehow no datasets are retrieved when I try the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname InfoMLi infomaps metauser=Malxxxx
metapass=xxxx
metaserver=sub029
metaport=8561
mappath="/Depart_1/Unit 122/Information Maps/source_result"
metarepository=Foundation;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The log output just shows that the libref as been assigned. I can see that. but&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc datasets lib=InfoMLi;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;throws the error: ERROR: Unable to initialize list of information maps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea what I do wrong?&lt;/P&gt;&lt;P&gt;I use EG 7.1 and no OLAP data, just sasbase data sets in my information map.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Jan 2017 15:59:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Information-Map-Engine-and-no-datasets/m-p/328790#M9652</guid>
      <dc:creator>PhilipH</dc:creator>
      <dc:date>2017-01-31T15:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: Information Map Engine and no datasets</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Information-Map-Engine-and-no-datasets/m-p/329213#M9666</link>
      <description>&lt;P&gt;Some questions:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;- does the metauser account have read/readmetadata access to that information map?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;- Have you tried some of the SAS samples (perhaps you're already working with these) -- &lt;A href="http://blogs.sas.com/content/sasdummy/2010/05/25/reporting-on-sas-information-maps/" target="_self"&gt;like this one for reporting&lt;/A&gt;, and this one with &lt;A href="http://blogs.sas.com/content/sasdummy/2011/06/25/which-tables-contribute-to-that-sas-information-map/" target="_self"&gt;PROC INFOMAPS&lt;/A&gt;?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When using EG, can you use &lt;STRONG&gt;File-&amp;gt;Open Information Map&lt;/STRONG&gt;? &amp;nbsp;If so, that will generate the code that you can use for reporting in other environments.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 21:43:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Information-Map-Engine-and-no-datasets/m-p/329213#M9666</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2017-02-01T21:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: Information Map Engine and no datasets</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Information-Map-Engine-and-no-datasets/m-p/329316#M9668</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for you reply. The code generated in the log worked fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;GOPTIONS ACCESSIBLE;
/* assign the library using the INFOMAPS library engine */
sysecho "Assigning library to access information map";
%macro SetDisplayOrder;
%if %sysevalf(&amp;amp;sysver&amp;gt;=9.4) %then displayorder=folder;
%mend SetDisplayOrder;
libname xxtest sasioime
mappath="/xxx/xx/xxx"
aggregate=yes
metacredentials=no
PRESERVE_MAP_NAMES=YES
%SetDisplayOrder;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I noticed that the library was created. I noticed that the library was gone after I restarted EG. does that mean it is a non-permanent library assignment?&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 08:25:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Information-Map-Engine-and-no-datasets/m-p/329316#M9668</guid>
      <dc:creator>PhilipH</dc:creator>
      <dc:date>2017-02-02T08:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: Information Map Engine and no datasets</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Information-Map-Engine-and-no-datasets/m-p/329405#M9670</link>
      <description>&lt;P&gt;Correct, it is not a permanent library. &amp;nbsp;The Information Map "task" has one job: import the selected data from your map into a SAS data set, where you can report on it. &amp;nbsp;After the data is imported, the library is unassigned. &amp;nbsp;I recommend that approach because repeated calls back into the source information map can be inefficient. &amp;nbsp;If your map points to just Base SAS data sets, it might be okay. &amp;nbsp;But sometimes the data are located on remote systems so network latency is a consideration.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can adapt the code that the task generates and use it in other programs.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 13:07:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Information-Map-Engine-and-no-datasets/m-p/329405#M9670</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2017-02-02T13:07:30Z</dc:date>
    </item>
  </channel>
</rss>

