<?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: SAS Infomap in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/SAS-Infomap/m-p/620463#M19524</link>
    <description>&lt;P&gt;Thanks for the help&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4"&gt;@ChrisHemedinger&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 28 Jan 2020 11:49:44 GMT</pubDate>
    <dc:creator>Madhu_Kappala</dc:creator>
    <dc:date>2020-01-28T11:49:44Z</dc:date>
    <item>
      <title>SAS Infomap</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Infomap/m-p/620113#M19493</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please suggest me how to find the list of SAS Info maps that are created by an Table.&lt;/P&gt;&lt;P&gt;For example the table name is cars from sashelp, i would like to know what are all the Info maps created using cars table.&lt;/P&gt;&lt;P&gt;any suggestions or help would be appreciated.&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;Thanks&lt;/P&gt;&lt;P&gt;Madhu&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 06:39:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Infomap/m-p/620113#M19493</guid>
      <dc:creator>Madhu_Kappala</dc:creator>
      <dc:date>2020-01-27T06:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Infomap</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Infomap/m-p/620246#M19512</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/306942"&gt;@Madhu_Kappala&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can back into it, I think, by finding all of the information maps first, then using PROC INFOMAPS to list the tables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Specify your metadata folder here.  This is the folder that     */
/* contains the information map definitions                        */
%let folder = /Shared Data/Maps;

/* NOTE: when using this LIBNAME statement in a batch environment,  */
/* you might need to add metadata host and credentials information. */
/* When running from SAS Enterprise Guide, it should not be         */
/* necessary; your metadata identity will be used automatically.    */
/* Note that the report will contain only those Information Maps    */
/* for which you have Read access permissions.                      */
libname imaps infomaps 
  mappath="&amp;amp;folder"
  aggregate=yes
  /* use already-established metadata connection */
  metacredentials=no
  /* uncomment the following if running in batch/DMS */
  /*****************   
  host=metadatahost.com
  port=8561
  user=yourId
  pw="yourPassword"
  ******************/
  PRESERVE_MAP_NAMES=YES;

footnote;
/* Report of information maps in the selected folder */
proc print data=sashelp.vinfomp noobs label;
  var mapname description;
  label mapname = "Name" description = "Description";
  title "Information Maps in &amp;amp;folder";
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Example result:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="imap.jpg" style="width: 470px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/35638iE4F69700BC6328A0/image-size/large?v=v2&amp;amp;px=999" role="button" title="imap.jpg" alt="imap.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then PROC INFOMAPS:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc infomaps;
 update infomap "Cars" mappath="/Shared Data/Maps";
 list datasources;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Example output:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Total datasources: 1
Data source: Sample Data.CARS_1993
ID: CARS_1993
Name: CARS_1993
Description:&lt;/PRE&gt;
&lt;P&gt;More in these blog posts:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://blogs.sas.com/content/sasdummy/2011/06/25/which-tables-contribute-to-that-sas-information-map/" target="_blank"&gt;https://blogs.sas.com/content/sasdummy/2011/06/25/which-tables-contribute-to-that-sas-information-map/&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://blogs.sas.com/content/sasdummy/2010/05/25/reporting-on-sas-information-maps/" target="_blank"&gt;https://blogs.sas.com/content/sasdummy/2010/05/25/reporting-on-sas-information-maps/&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 17:37:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Infomap/m-p/620246#M19512</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2020-01-27T17:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Infomap</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Infomap/m-p/620463#M19524</link>
      <description>&lt;P&gt;Thanks for the help&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4"&gt;@ChrisHemedinger&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jan 2020 11:49:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Infomap/m-p/620463#M19524</guid>
      <dc:creator>Madhu_Kappala</dc:creator>
      <dc:date>2020-01-28T11:49:44Z</dc:date>
    </item>
  </channel>
</rss>

