<?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: Error &amp;quot;value supplied for assignment to the numeric automatic macro variable SYSCC was out in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Error-quot-value-supplied-for-assignment-to-the-numeric/m-p/564033#M158182</link>
    <description>&lt;P&gt;Hi ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just for info. Now I get to my answer. If I look at my program code with 'hex on' then I see the following, for the guilty line:&lt;/P&gt;&lt;PRE&gt;   %let SYSCC  =&amp;nbsp;%sysfunc(max(&amp;amp;SYSCC., &amp;amp;MYSYSCC.));
444698A4EEECC447&lt;FONT color="#ff0000"&gt;4&lt;/FONT&gt;6AAA8A98498A45EEECC4645DEEEECC45554444
000C35302823300E&lt;FONT color="#ff0000"&gt;1&lt;/FONT&gt;C2826453D417D028233BB004828233BDDE0000&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This hex'41' is apparently the non-breaking space.&lt;/P&gt;&lt;P&gt;&lt;A href="https://en.wikipedia.org/wiki/Non-breaking_space&amp;nbsp;" target="_blank" rel="noopener"&gt;https://en.wikipedia.org/wiki/Non-breaking_space&amp;nbsp;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this character gets fed into SYSCC in SAS9.1 then there is no problem.&lt;/P&gt;&lt;P&gt;If this character gets fed into SYSCC&amp;nbsp;in SAS9.4 then it causes an error.&lt;/P&gt;&lt;P&gt;If this character gets fed into %EVAL&amp;nbsp;in SAS9.1 or SAS9.4 then it causes an error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This nerd is now happy &lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://communities.sas.com/i/smilies/16x16_smiley-very-happy.png" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Antony&lt;/P&gt;</description>
    <pubDate>Thu, 06 Jun 2019 11:12:50 GMT</pubDate>
    <dc:creator>aknight1</dc:creator>
    <dc:date>2019-06-06T11:12:50Z</dc:date>
    <item>
      <title>Error "value supplied for assignment to the numeric automatic macro variable SYSCC was out of range"</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-quot-value-supplied-for-assignment-to-the-numeric/m-p/563702#M158057</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is not a question .... it's just an FYI, which might save somebody a few minutes (or hours!)&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am working on MVS, and&amp;nbsp;migrating a Production Job from SAS9.1 to SAS9.4. A mysterious error message appeared.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#ff0000"&gt;ERROR: The value supplied for assignment to the numeric automatic macro variable SYSCC was out of range or could not be converted to a numeric value.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Under SAS9.1 the error message does not occur, and the Job finishes with RC=00.&lt;/P&gt;&lt;P&gt;Under SAS9.4 the error message occurs, and the Job abends with RC=08.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#ff0000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Here is the relevant part of the Program. The error message is being created (under SAS9.4) by the final line in this snippet.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put &amp;gt;&amp;gt;&amp;gt; ------------------------------------------------------- ;
%put &amp;gt;&amp;gt;&amp;gt; Transfer number &amp;amp;J , for table &amp;amp;&amp;amp;stab&amp;amp;j is complete ;
%put &amp;gt;&amp;gt;&amp;gt; ------------------------------------------------------- ;

%let SYSCC=%sysfunc(COMPRESS( &amp;amp;SYSCC.,0123456789,k));
%let MYSYSCC=%sysfunc(COMPRESS(&amp;amp;MYSYSCC.,0123456789,k));

%put &amp;gt;&amp;gt;&amp;gt; "SYSCC" : "&amp;amp;SYSCC.";
%put &amp;gt;&amp;gt;&amp;gt; "MYSYSCC": "&amp;amp;MYSYSCC.";

&lt;STRONG&gt;%let SYSCC =　%sysfunc(max(&amp;amp;SYSCC., &amp;amp;MYSYSCC.));&lt;/STRONG&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS9.4 Log:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;&amp;gt;&amp;gt;&amp;gt; -------------------------------------------------------
&amp;gt;&amp;gt;&amp;gt; Transfer number 1 , for table KEABTT is complete
&amp;gt;&amp;gt;&amp;gt; -------------------------------------------------------

&amp;gt;&amp;gt;&amp;gt; "SYSCC" : "0"
&amp;gt;&amp;gt;&amp;gt; "MYSYSCC": "0"
ERROR: The value supplied for assignment to the numeric automatic macro variable SYSCC was out of range or could not be converted to a numeric value.
ERROR: The value supplied for assignment to the numeric automatic macro variable SYSCC was out of range or could not be converted to a numeric value.
ERROR: The value supplied for assignment to the numeric automatic macro variable SYSCC was out of range or could not be converted to a numeric value.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(I introduced the COMPRESS and "QUOTES", to try to identify any extra/invalid characters which might be finding their way into the Macro Vars, but the code did not&amp;nbsp;find any).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After some investigation and much trial-and-error, we fixed the problem by changing the line like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;&lt;STRONG&gt;%let SYSCC=%sysfunc(max(&amp;amp;SYSCC.,&amp;amp;MYSYSCC.));&lt;/STRONG&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems like SAS9.4 is much stricter with the values that can be passed into SYSCC, and does not tolerate any leading blank spaces.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="xis-table"&gt;&lt;EM&gt;I could not find any documentation for this error message (in documentation for Base or Macro). If you know that there is some, and I simply could not find it, please could you Post the location?&amp;nbsp;&lt;/EM&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Antony&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 13:56:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-quot-value-supplied-for-assignment-to-the-numeric/m-p/563702#M158057</guid>
      <dc:creator>aknight1</dc:creator>
      <dc:date>2019-06-05T13:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: Error "value supplied for assignment to the numeric automatic macro variable SYSCC was out</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-quot-value-supplied-for-assignment-to-the-numeric/m-p/563734#M158065</link>
      <description>Did you already put in a ticket to the service desk?</description>
      <pubDate>Wed, 05 Jun 2019 15:39:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-quot-value-supplied-for-assignment-to-the-numeric/m-p/563734#M158065</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-06-05T15:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: Error "value supplied for assignment to the numeric automatic macro variable SYSCC was out</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-quot-value-supplied-for-assignment-to-the-numeric/m-p/563971#M158153</link>
      <description>&lt;P&gt;Hi Reeza ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Honestly, I was expecting (still am expecting) somebody to admonish me ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://documentation.sas.com/relevant-documentation-is-here-you-fool.html" target="_blank"&gt;http://documentation.sas.com/relevant-documentation-is-here-you-fool.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this is not forthcoming then yes I will report the problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Antony&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 06:18:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-quot-value-supplied-for-assignment-to-the-numeric/m-p/563971#M158153</guid>
      <dc:creator>aknight1</dc:creator>
      <dc:date>2019-06-06T06:18:48Z</dc:date>
    </item>
    <item>
      <title>Re: Error "value supplied for assignment to the numeric automatic macro variable SYSCC was out</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-quot-value-supplied-for-assignment-to-the-numeric/m-p/563976#M158155</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/153219"&gt;@aknight1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May be macro quoting creates the issue. Below run with SAS9.4M5 under RHEL.&lt;/P&gt;
&lt;PRE&gt;28         %let syscc=4;
29         %let syscc=%nrbquote(&amp;amp;syscc);
ERROR: The value supplied for assignment to the numeric automatic macro variable SYSCC was out of range or could not be 
       converted to a numeric value.
30         %put &amp;amp;=syscc;
SYSCC=1012
31         
32         %let syscc=4;
33         %let syscc=%eval(%nrbquote(&amp;amp;syscc));
34         %put &amp;amp;=syscc;
SYSCC=4&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 06:50:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-quot-value-supplied-for-assignment-to-the-numeric/m-p/563976#M158155</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2019-06-06T06:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: Error "value supplied for assignment to the numeric automatic macro variable SYSCC was out</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-quot-value-supplied-for-assignment-to-the-numeric/m-p/563978#M158157</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/153219"&gt;@aknight1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The error message itself is documented here.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl//en/mcrolref/69726/HTML/default/viewer.htm#n1mcxptbxr3qhwn1q6swv33z8akq.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl//en/mcrolref/69726/HTML/default/viewer.htm#n1mcxptbxr3qhwn1q6swv33z8akq.htm&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 06:58:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-quot-value-supplied-for-assignment-to-the-numeric/m-p/563978#M158157</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2019-06-06T06:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: Error "value supplied for assignment to the numeric automatic macro variable SYSCC was out</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-quot-value-supplied-for-assignment-to-the-numeric/m-p/564001#M158165</link>
      <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt;&amp;nbsp;....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the link! .... this was the documentation I could not find &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Antony&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 09:20:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-quot-value-supplied-for-assignment-to-the-numeric/m-p/564001#M158165</guid>
      <dc:creator>aknight1</dc:creator>
      <dc:date>2019-06-06T09:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: Error "value supplied for assignment to the numeric automatic macro variable SYSCC was out</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-quot-value-supplied-for-assignment-to-the-numeric/m-p/564003#M158166</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/153219"&gt;@aknight1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I found it simply by copy/pasting the error message into a Google search.&lt;/P&gt;
&lt;P&gt;I didn't know that it exists so learned something &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have you tried using %EVAL() instead of %sysfunc(compress()). Does that work for your case?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 09:29:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-quot-value-supplied-for-assignment-to-the-numeric/m-p/564003#M158166</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2019-06-06T09:29:18Z</dc:date>
    </item>
    <item>
      <title>Re: Error "value supplied for assignment to the numeric automatic macro variable SYSCC was out</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-quot-value-supplied-for-assignment-to-the-numeric/m-p/564004#M158167</link>
      <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt;&amp;nbsp;...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for this suggestion. I scanned the program for any cases of quoting, and could not find.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But your suggestion prompted some further testing ... I think now I get closer to finding&amp;nbsp;the underlying cause ...&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let   SYSCC  =  0;
%let MYSYSCC  =  0;
%let SYSCC    =  &amp;amp;SYSCC.;
%put &amp;gt;&amp;gt;&amp;gt; Step1: SYSCC: &amp;amp;SYSCC.;

%let   SYSCC  =  0;
%let MYSYSCC  =  0;
%let SYSCC    =  &amp;amp;MYSYSCC.;
%put &amp;gt;&amp;gt;&amp;gt; Step2: SYSCC: &amp;amp;SYSCC.;

%let   SYSCC  =  0;
%let MYSYSCC  =  0;
* I have typed the below line directly;
%let SYSCC  = %sysfunc(max(&amp;amp;SYSCC., &amp;amp;MYSYSCC.));
%put &amp;gt;&amp;gt;&amp;gt; Step3: SYSCC: &amp;amp;SYSCC.;

%let   SYSCC  =  0;
%let MYSYSCC  =  0;
* I have copy-and-pasted the below line from the original program;
%let SYSCC  =&amp;nbsp;%sysfunc(max(&amp;amp;SYSCC., &amp;amp;MYSYSCC.));
%put &amp;gt;&amp;gt;&amp;gt; Step4: SYSCC: &amp;amp;SYSCC.;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;SAS9.4Log:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;72
73    %let   SYSCC  =  0;
74    %let MYSYSCC  =  0;
75    %let SYSCC    =  &amp;amp;SYSCC.;
76    %put &amp;gt;&amp;gt;&amp;gt; Step1: SYSCC: &amp;amp;SYSCC.;
&amp;gt;&amp;gt;&amp;gt; Step1: SYSCC: 0
77
78    %let   SYSCC  =  0;
79    %let MYSYSCC  =  0;
80    %let SYSCC    =  &amp;amp;MYSYSCC.;
81    %put &amp;gt;&amp;gt;&amp;gt; Step2: SYSCC: &amp;amp;SYSCC.;
&amp;gt;&amp;gt;&amp;gt; Step2: SYSCC: 0
82
83    %let   SYSCC  =  0;
84    %let MYSYSCC  =  0;
85    * I have typed the below line directly;
86    %let SYSCC  = %sysfunc(max(&amp;amp;SYSCC., &amp;amp;MYSYSCC.));
87    %put &amp;gt;&amp;gt;&amp;gt; Step3: SYSCC: &amp;amp;SYSCC.;
&amp;gt;&amp;gt;&amp;gt; Step3: SYSCC: 0
88
89    %let   SYSCC  =  0;
90    %let MYSYSCC  =  0;
91    * I have copy-and-pasted the below line from the original program;
92    %let SYSCC  =&amp;nbsp;%sysfunc(max(&amp;amp;SYSCC., &amp;amp;MYSYSCC.));
ERROR: The value supplied for assignment to the numeric automatic macro
       variable SYSCC was out of range or could not be converted to a
       numeric value.
93    %put &amp;gt;&amp;gt;&amp;gt; Step4: SYSCC: &amp;amp;SYSCC.;
&amp;gt;&amp;gt;&amp;gt; Step4: SYSCC: 1012&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;It seems like there is a hidden character in my actual line of %sysfunc(max( )) code, which is getting passed into the SYSCC macro variable. This did not cause a problem in SAS9.1, but SAS9.4 does not like it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Antony&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 09:29:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-quot-value-supplied-for-assignment-to-the-numeric/m-p/564004#M158167</guid>
      <dc:creator>aknight1</dc:creator>
      <dc:date>2019-06-06T09:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: Error "value supplied for assignment to the numeric automatic macro variable SYSCC was out</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-quot-value-supplied-for-assignment-to-the-numeric/m-p/564033#M158182</link>
      <description>&lt;P&gt;Hi ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just for info. Now I get to my answer. If I look at my program code with 'hex on' then I see the following, for the guilty line:&lt;/P&gt;&lt;PRE&gt;   %let SYSCC  =&amp;nbsp;%sysfunc(max(&amp;amp;SYSCC., &amp;amp;MYSYSCC.));
444698A4EEECC447&lt;FONT color="#ff0000"&gt;4&lt;/FONT&gt;6AAA8A98498A45EEECC4645DEEEECC45554444
000C35302823300E&lt;FONT color="#ff0000"&gt;1&lt;/FONT&gt;C2826453D417D028233BB004828233BDDE0000&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This hex'41' is apparently the non-breaking space.&lt;/P&gt;&lt;P&gt;&lt;A href="https://en.wikipedia.org/wiki/Non-breaking_space&amp;nbsp;" target="_blank" rel="noopener"&gt;https://en.wikipedia.org/wiki/Non-breaking_space&amp;nbsp;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this character gets fed into SYSCC in SAS9.1 then there is no problem.&lt;/P&gt;&lt;P&gt;If this character gets fed into SYSCC&amp;nbsp;in SAS9.4 then it causes an error.&lt;/P&gt;&lt;P&gt;If this character gets fed into %EVAL&amp;nbsp;in SAS9.1 or SAS9.4 then it causes an error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This nerd is now happy &lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://communities.sas.com/i/smilies/16x16_smiley-very-happy.png" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Antony&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 11:12:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-quot-value-supplied-for-assignment-to-the-numeric/m-p/564033#M158182</guid>
      <dc:creator>aknight1</dc:creator>
      <dc:date>2019-06-06T11:12:50Z</dc:date>
    </item>
  </channel>
</rss>

