<?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: PROC INFOMAPS not working in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-INFOMAPS-not-working/m-p/1671#M531</link>
    <description>Hi:&lt;BR /&gt;
  In the documentation &lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/onlinedoc/91pdf/sasdoc_913/base_infomap_9951.pdf" target="_blank"&gt;http://support.sas.com/documentation/onlinedoc/91pdf/sasdoc_913/base_infomap_9951.pdf&lt;/A&gt;&lt;BR /&gt;
on page 26/27, they show this example:&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
proc infomaps metauser="myUserID"&lt;BR /&gt;
     metapass="myPassword"&lt;BR /&gt;
     metaserver="myip.us.mycompany.com"&lt;BR /&gt;
     metaport=8561&lt;BR /&gt;
     metarepository="Foundation";&lt;BR /&gt;
/* Delete the information map to avoid duplicate data items. */&lt;BR /&gt;
delete infomap "xmp_simple" mappath="/BIP Tree/ReportStudio/Maps";&lt;BR /&gt;
  &lt;BR /&gt;
/* Open a new information map. The path specified is where, by */&lt;BR /&gt;
/* default, it will be saved when a SAVE statement is issued. */&lt;BR /&gt;
/* The information map exists only in memory and not in the */&lt;BR /&gt;
/* metadata repository until the SAVE statement is issued. */&lt;BR /&gt;
open infomap "xmp_simple"&lt;BR /&gt;
        mappath="/BIP Tree/ReportStudio/Maps";&lt;BR /&gt;
  &lt;BR /&gt;
/* Note that an OPEN INFOMAP statement must precede the */&lt;BR /&gt;
/* INSERT DATASOURCE statement. */&lt;BR /&gt;
/* Make the specified table on the specified server accessible. */&lt;BR /&gt;
insert datasource sasserver="SASMain"&lt;BR /&gt;
       table="Sample Data".CLASS _all_ ;&lt;BR /&gt;
  &lt;BR /&gt;
/* If no name is specified on the SAVE statement, then the information */&lt;BR /&gt;
/* map that is currently open is saved with the name with which it was */&lt;BR /&gt;
/* opened. If no path is specified, then it is saved in the path */&lt;BR /&gt;
/* specified in the OPEN statement or, secondarily, it is saved in */&lt;BR /&gt;
/* the path that is specified in the PROC INFOMAPS statement. */&lt;BR /&gt;
save;&lt;BR /&gt;
run;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
The reference they use on their TABLE= option is the Descriptive name of the LIBRARY..so for example, I might have a &lt;BR /&gt;
LIBRARY named "Orion Star" in the Metadata &lt;BR /&gt;
whose &lt;BR /&gt;
LIBREF was "orstar" in my SAS program. &lt;BR /&gt;
&lt;BR /&gt;
But the usage in the example, implies to me that the correct coding would be:&lt;BR /&gt;
TABLE="Orion Star".customer  (the descriptive LIBRARY name)&lt;BR /&gt;
NOT&lt;BR /&gt;
TABLE=orstar.customer  (the LIBREF used in the SAS program)&lt;BR /&gt;
&lt;BR /&gt;
You might also consider contacting Tech Support for help using PROC INFOMAP. To contact Tech Support, go to &lt;A href="http://support.sas.com" target="_blank"&gt;http://support.sas.com&lt;/A&gt; and on the left hand navigation pane, look for the link entitled "Submit a Problem".&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
    <pubDate>Tue, 27 Nov 2007 19:51:55 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2007-11-27T19:51:55Z</dc:date>
    <item>
      <title>PROC INFOMAPS not working</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-INFOMAPS-not-working/m-p/1669#M529</link>
      <description>We ran the PROC infomap to add tables to a infomap. While doing so, we got the following error.&lt;BR /&gt;
&lt;BR /&gt;
&lt;I&gt;481  proc infomaps metauser="sasdemo"&lt;BR /&gt;
482  metapass=XXXXXXXXXXXX&lt;BR /&gt;
483  metaserver="TPCIDL06048"&lt;BR /&gt;
484  metaport=8561&lt;BR /&gt;
485  metarepository="Foundation";&lt;BR /&gt;
486  delete infomap "testmap" mappath="/BIP Tree/ReportStudio/Maps";&lt;BR /&gt;
NOTE: Information map "testmap" was successfully deleted from "/BIP Tree/ReportStudio/Maps".&lt;BR /&gt;
487  open infomap "testmap"&lt;BR /&gt;
488  mappath="/BIP Tree/ReportStudio/Maps";&lt;BR /&gt;
489  insert datasource server="SASMain"&lt;BR /&gt;
490  table=ProcLib.City _ALL_ ;&lt;BR /&gt;
com.sas.iquery.metadata.MetadataException: The schema named PROCLIB was not found on server SASMain.&lt;BR /&gt;
            at com.sas.iquery.metadata.business.impl.InformationMapImpl.newDataSourceTable(Unknown Source)&lt;BR /&gt;
            at com.sas.iquery.baseinteg.ProcInfoMaps.addDataSourceTable(Unknown Source)&lt;BR /&gt;
ERROR: Failed to insert data source "PROCLIB"."CITY".&lt;BR /&gt;
491  save;&lt;BR /&gt;
NOTE: Information map "testmap" has been saved in folder "/BIP Tree/ReportStudio/Maps".&lt;BR /&gt;
WARNING: Information map "testmap" contains no business items.&lt;BR /&gt;
492  run;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
NOTE: PROCEDURE INFOMAPS used (Total process time):&lt;BR /&gt;
      real time           0.79 seconds&lt;BR /&gt;
      cpu time            0.03 seconds&lt;/I&gt;&lt;BR /&gt;
&lt;BR /&gt;
Please let us know if the above syntax is right. If so, let us know how to rectify this error.</description>
      <pubDate>Mon, 30 Oct 2006 06:43:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-INFOMAPS-not-working/m-p/1669#M529</guid>
      <dc:creator>Ramjir</dc:creator>
      <dc:date>2006-10-30T06:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: PROC INFOMAPS not working</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-INFOMAPS-not-working/m-p/1670#M530</link>
      <description>did you ever get a response for this?  I am getting the same error</description>
      <pubDate>Tue, 27 Nov 2007 19:02:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-INFOMAPS-not-working/m-p/1670#M530</guid>
      <dc:creator>RW</dc:creator>
      <dc:date>2007-11-27T19:02:18Z</dc:date>
    </item>
    <item>
      <title>Re: PROC INFOMAPS not working</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-INFOMAPS-not-working/m-p/1671#M531</link>
      <description>Hi:&lt;BR /&gt;
  In the documentation &lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/onlinedoc/91pdf/sasdoc_913/base_infomap_9951.pdf" target="_blank"&gt;http://support.sas.com/documentation/onlinedoc/91pdf/sasdoc_913/base_infomap_9951.pdf&lt;/A&gt;&lt;BR /&gt;
on page 26/27, they show this example:&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
proc infomaps metauser="myUserID"&lt;BR /&gt;
     metapass="myPassword"&lt;BR /&gt;
     metaserver="myip.us.mycompany.com"&lt;BR /&gt;
     metaport=8561&lt;BR /&gt;
     metarepository="Foundation";&lt;BR /&gt;
/* Delete the information map to avoid duplicate data items. */&lt;BR /&gt;
delete infomap "xmp_simple" mappath="/BIP Tree/ReportStudio/Maps";&lt;BR /&gt;
  &lt;BR /&gt;
/* Open a new information map. The path specified is where, by */&lt;BR /&gt;
/* default, it will be saved when a SAVE statement is issued. */&lt;BR /&gt;
/* The information map exists only in memory and not in the */&lt;BR /&gt;
/* metadata repository until the SAVE statement is issued. */&lt;BR /&gt;
open infomap "xmp_simple"&lt;BR /&gt;
        mappath="/BIP Tree/ReportStudio/Maps";&lt;BR /&gt;
  &lt;BR /&gt;
/* Note that an OPEN INFOMAP statement must precede the */&lt;BR /&gt;
/* INSERT DATASOURCE statement. */&lt;BR /&gt;
/* Make the specified table on the specified server accessible. */&lt;BR /&gt;
insert datasource sasserver="SASMain"&lt;BR /&gt;
       table="Sample Data".CLASS _all_ ;&lt;BR /&gt;
  &lt;BR /&gt;
/* If no name is specified on the SAVE statement, then the information */&lt;BR /&gt;
/* map that is currently open is saved with the name with which it was */&lt;BR /&gt;
/* opened. If no path is specified, then it is saved in the path */&lt;BR /&gt;
/* specified in the OPEN statement or, secondarily, it is saved in */&lt;BR /&gt;
/* the path that is specified in the PROC INFOMAPS statement. */&lt;BR /&gt;
save;&lt;BR /&gt;
run;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
The reference they use on their TABLE= option is the Descriptive name of the LIBRARY..so for example, I might have a &lt;BR /&gt;
LIBRARY named "Orion Star" in the Metadata &lt;BR /&gt;
whose &lt;BR /&gt;
LIBREF was "orstar" in my SAS program. &lt;BR /&gt;
&lt;BR /&gt;
But the usage in the example, implies to me that the correct coding would be:&lt;BR /&gt;
TABLE="Orion Star".customer  (the descriptive LIBRARY name)&lt;BR /&gt;
NOT&lt;BR /&gt;
TABLE=orstar.customer  (the LIBREF used in the SAS program)&lt;BR /&gt;
&lt;BR /&gt;
You might also consider contacting Tech Support for help using PROC INFOMAP. To contact Tech Support, go to &lt;A href="http://support.sas.com" target="_blank"&gt;http://support.sas.com&lt;/A&gt; and on the left hand navigation pane, look for the link entitled "Submit a Problem".&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Tue, 27 Nov 2007 19:51:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-INFOMAPS-not-working/m-p/1671#M531</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2007-11-27T19:51:55Z</dc:date>
    </item>
  </channel>
</rss>

