<?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 Infomap queries SAS Information Map Studio in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Infomap-queries-SAS-Information-Map-Studio/m-p/400277#M25733</link>
    <description>&lt;P&gt;I am trying to create infomap using SAS Information Map Studio ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I create a variable that took a period as "201605" and turn it to date like 2016-05-31 , I used this code&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;(put((intnx('month', input(cats(&amp;lt;&amp;lt;DM_DATE.MOIS_ET_ANNEE_YYYYMM&amp;gt;&amp;gt;,'01'),yymmdd10.),0,'ending')),yymmdd10.))&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;the problem is when I am trying to validate the expression I got this error&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/15537iF2C1C439B8617F4D/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;however when I copy the query used by Infomap on SAS Entreprise Guide it worked&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC SQL Outobs=100;
Create table WORK.A44 as
SELECT  DISTINCT 
	 ( (put((intnx('month', input(cats(table0.MOIS_ET_ANNEE_YYYYMM,'01'),yymmdd10.),0,'ending')),yymmdd10.)) )  AS DIR_7 LABEL='Datetest' 
FROM
	abb.DM_DATE table0 
 GROUP BY
	1;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 02 Oct 2017 14:37:10 GMT</pubDate>
    <dc:creator>Asmam</dc:creator>
    <dc:date>2017-10-02T14:37:10Z</dc:date>
    <item>
      <title>Infomap queries SAS Information Map Studio</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Infomap-queries-SAS-Information-Map-Studio/m-p/400277#M25733</link>
      <description>&lt;P&gt;I am trying to create infomap using SAS Information Map Studio ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I create a variable that took a period as "201605" and turn it to date like 2016-05-31 , I used this code&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;(put((intnx('month', input(cats(&amp;lt;&amp;lt;DM_DATE.MOIS_ET_ANNEE_YYYYMM&amp;gt;&amp;gt;,'01'),yymmdd10.),0,'ending')),yymmdd10.))&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;the problem is when I am trying to validate the expression I got this error&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/15537iF2C1C439B8617F4D/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;however when I copy the query used by Infomap on SAS Entreprise Guide it worked&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC SQL Outobs=100;
Create table WORK.A44 as
SELECT  DISTINCT 
	 ( (put((intnx('month', input(cats(table0.MOIS_ET_ANNEE_YYYYMM,'01'),yymmdd10.),0,'ending')),yymmdd10.)) )  AS DIR_7 LABEL='Datetest' 
FROM
	abb.DM_DATE table0 
 GROUP BY
	1;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 02 Oct 2017 14:37:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Infomap-queries-SAS-Information-Map-Studio/m-p/400277#M25733</guid>
      <dc:creator>Asmam</dc:creator>
      <dc:date>2017-10-02T14:37:10Z</dc:date>
    </item>
    <item>
      <title>Re: Infomap queries SAS Information Map Studio</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Infomap-queries-SAS-Information-Map-Studio/m-p/400288#M25734</link>
      <description>&lt;P&gt;Remove the &amp;lt;&amp;lt; and &amp;gt;&amp;gt;. Valid SAS names consist of letters, digits and underlines, and can't start with a digit.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2017 14:53:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Infomap-queries-SAS-Information-Map-Studio/m-p/400288#M25734</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-10-02T14:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Infomap queries SAS Information Map Studio</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Infomap-queries-SAS-Information-Map-Studio/m-p/400293#M25735</link>
      <description>&lt;P&gt;thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt; for your answer but The &lt;STRONG&gt;&amp;lt;&amp;lt;&lt;/STRONG&gt; and &lt;STRONG&gt;&amp;gt;&amp;gt;&lt;/STRONG&gt; cames automatically when I select the variable from the data source ! even when removed it nothing change&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2017 15:00:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Infomap-queries-SAS-Information-Map-Studio/m-p/400293#M25735</guid>
      <dc:creator>Asmam</dc:creator>
      <dc:date>2017-10-02T15:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: Infomap queries SAS Information Map Studio</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Infomap-queries-SAS-Information-Map-Studio/m-p/400860#M25759</link>
      <description>&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt; the &amp;lt;&amp;lt;&amp;gt;&amp;gt; are mandatory when referring to relational data, so that part should be ok. &lt;BR /&gt;According to the documentation 'ending' is not a valid alignment option, 'end' is.&lt;BR /&gt;Then I would solve this kind data manipulation in the data at rest, rather than in the virtual layer.</description>
      <pubDate>Wed, 04 Oct 2017 06:26:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Infomap-queries-SAS-Information-Map-Studio/m-p/400860#M25759</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2017-10-04T06:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: Infomap queries SAS Information Map Studio</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Infomap-queries-SAS-Information-Map-Studio/m-p/400864#M25760</link>
      <description>&lt;P&gt;What kind of server are you using in Enterprise Guide? The same pooled workspace server, with user asma@saspw, or with a valid operating system account and a standard (non-pooled) workspace server?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Oct 2017 06:53:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Infomap-queries-SAS-Information-Map-Studio/m-p/400864#M25760</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-10-04T06:53:55Z</dc:date>
    </item>
  </channel>
</rss>

