<?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: &amp;quot;NOTE 49-169: The meaning of an identifier after a quoted string.....&amp;quot; error in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/quot-NOTE-49-169-The-meaning-of-an-identifier-after-a-quoted/m-p/480379#M124152</link>
    <description>&lt;P&gt;I have nothing to run this on so just guessing.&amp;nbsp; The warning refers to scenarios using named literals.&amp;nbsp; This is a system whereby a letter is suffixed to a string to indicate type, e.g. "21jul2018"d - this indicates the string is a date.&amp;nbsp; As these suffixes could change it is warning you that a generated part of your code has created this and you should be careful.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suspect it is this line:&lt;/P&gt;
&lt;PRE&gt;"&amp;amp;date."d&lt;/PRE&gt;
&lt;P&gt;Which you can change to:&lt;/P&gt;
&lt;PRE&gt;input("&amp;amp;date.",date9.) as recrepor format yymmddn8.,&lt;/PRE&gt;
&lt;P&gt;Please do avoid coding in mixed case, it makes code very hard to read.&lt;/P&gt;</description>
    <pubDate>Mon, 23 Jul 2018 09:50:36 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2018-07-23T09:50:36Z</dc:date>
    <item>
      <title>"NOTE 49-169: The meaning of an identifier after a quoted string....." error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/quot-NOTE-49-169-The-meaning-of-an-identifier-after-a-quoted/m-p/480376#M124151</link>
      <description>&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have following code;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%Macro Relcontclien_Module();
	Proc sql;
		Create table IFRS.RELCONTCLIEN_&amp;amp;Period._Nordic as
		select Distinct
		 "&amp;amp;date."d format YYMMDDn8. as FECREPOR, /*Format conversion needed */
		 Country_ISO_01 format $5. as CORUNIT, /*Clarification need on how to report unit*/
		 Contract_Key as CODCONTR,
		 CustomerID as CODIDPER,
		 '1' as CODINTER
		 from IFRS.Module_Cal_&amp;amp;Period._Nordic	
		 order by Contract_Key;
	quit;

%Mend;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;When I run it, it displays the following error in the log;&lt;/P&gt;&lt;PRE&gt;NOTE 49-169: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space 
             between a quoted string and the succeeding identifier is recommended.&lt;/PRE&gt;&lt;P&gt;But the Log summary has not got any error marks. I have already seen other posts on the same question. I could&amp;nbsp;not figure out still how to fix it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jul 2018 09:42:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/quot-NOTE-49-169-The-meaning-of-an-identifier-after-a-quoted/m-p/480376#M124151</guid>
      <dc:creator>Myurathan</dc:creator>
      <dc:date>2018-07-23T09:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: "NOTE 49-169: The meaning of an identifier after a quoted string....." error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/quot-NOTE-49-169-The-meaning-of-an-identifier-after-a-quoted/m-p/480379#M124152</link>
      <description>&lt;P&gt;I have nothing to run this on so just guessing.&amp;nbsp; The warning refers to scenarios using named literals.&amp;nbsp; This is a system whereby a letter is suffixed to a string to indicate type, e.g. "21jul2018"d - this indicates the string is a date.&amp;nbsp; As these suffixes could change it is warning you that a generated part of your code has created this and you should be careful.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suspect it is this line:&lt;/P&gt;
&lt;PRE&gt;"&amp;amp;date."d&lt;/PRE&gt;
&lt;P&gt;Which you can change to:&lt;/P&gt;
&lt;PRE&gt;input("&amp;amp;date.",date9.) as recrepor format yymmddn8.,&lt;/PRE&gt;
&lt;P&gt;Please do avoid coding in mixed case, it makes code very hard to read.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jul 2018 09:50:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/quot-NOTE-49-169-The-meaning-of-an-identifier-after-a-quoted/m-p/480379#M124152</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-07-23T09:50:36Z</dc:date>
    </item>
    <item>
      <title>Re: "NOTE 49-169: The meaning of an identifier after a quoted string....." error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/quot-NOTE-49-169-The-meaning-of-an-identifier-after-a-quoted/m-p/480393#M124157</link>
      <description>Thank you so much &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Mon, 23 Jul 2018 11:24:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/quot-NOTE-49-169-The-meaning-of-an-identifier-after-a-quoted/m-p/480393#M124157</guid>
      <dc:creator>Myurathan</dc:creator>
      <dc:date>2018-07-23T11:24:00Z</dc:date>
    </item>
  </channel>
</rss>

