<?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 when field contains characters in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432096#M824392</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when GE '1' AND LE '9'.&lt;/P&gt;&lt;P&gt;CONCATENATE '1012'  '00000' itab_output2-storeno INTO wa1-storeno.&lt;/P&gt;&lt;P&gt;when GR 9 AND LR 100.&lt;/P&gt;&lt;P&gt;CONCATENATE '1012' '0000' itab_output2-storeno INTO wa1-storeno.&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to check if it had a character.... &lt;/P&gt;&lt;P&gt;if itab-field ca sy-abcde.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Feb 2008 19:51:39 GMT</pubDate>
    <dc:creator>former_member156446</dc:creator>
    <dc:date>2008-02-11T19:51:39Z</dc:date>
    <item>
      <title>Error when field contains characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432086#M824382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have itab_output2-storeno field which usually gets store number in it but sometimes I get a string with characters in it. How can I send a error message when itab_output2-storeno has chracters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Veni.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM FORMAT_STORENO.&lt;/P&gt;&lt;P&gt;  IF itab_output2-storeno &amp;gt;= 1 AND itab_output2-storeno &amp;lt;= 9.&lt;/P&gt;&lt;P&gt;    CONCATENATE '1012'&lt;/P&gt;&lt;P&gt;                '00000'&lt;/P&gt;&lt;P&gt;                itab_output2-storeno&lt;/P&gt;&lt;P&gt;                INTO wa1-storeno.&lt;/P&gt;&lt;P&gt;  ELSEIF itab_output2-storeno &amp;gt; 9 AND itab_output2-storeno &amp;lt; 100.&lt;/P&gt;&lt;P&gt;    CONCATENATE '1012'&lt;/P&gt;&lt;P&gt;                '0000'&lt;/P&gt;&lt;P&gt;                itab_output2-storeno&lt;/P&gt;&lt;P&gt;                INTO wa1-storeno.&lt;/P&gt;&lt;P&gt;  ELSEIF itab_output2-storeno &amp;gt; 99 AND itab_output2-storeno &amp;lt; 1000.&lt;/P&gt;&lt;P&gt;    CONCATENATE '1012'&lt;/P&gt;&lt;P&gt;                '000'&lt;/P&gt;&lt;P&gt;                itab_output2-storeno&lt;/P&gt;&lt;P&gt;                INTO wa1-storeno.&lt;/P&gt;&lt;P&gt;  ELSEIF itab_output2-storeno &amp;gt; 999 AND itab_output2-storeno &amp;lt; 10000.&lt;/P&gt;&lt;P&gt;    CONCATENATE '1012'&lt;/P&gt;&lt;P&gt;                '00'&lt;/P&gt;&lt;P&gt;                itab_output2-storeno&lt;/P&gt;&lt;P&gt;                INTO wa1-storeno.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " FORMAT_STORENO&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 19:05:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432086#M824382</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-11T19:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: Error when field contains characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432087#M824383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;

IF itab_output2-storeno co sy-abcde
   message E999 with 'Error'.
endif.

or

IF itab_output2-storeno ca sy-abcde
   message E999 with 'Error'.
endif.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 19:07:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432087#M824383</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2008-02-11T19:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: Error when field contains characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432088#M824384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this before all the IF statements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF  itab_output2-storeno  CO '0123456789'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Write all those IFs  here&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      Write : "It is not a number".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 19:08:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432088#M824384</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-11T19:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: Error when field contains characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432089#M824385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would have used a case statement for this:&lt;/P&gt;&lt;P&gt;case itab_output2-storeno.&lt;/P&gt;&lt;P&gt;when  1 .......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when others.&lt;/P&gt;&lt;P&gt;     raise message.   &lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 19:17:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432089#M824385</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-02-11T19:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: Error when field contains characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432090#M824386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ARS,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried the logic but it is giving me dump with error message 'Unable to interpret "IONS " as a number'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF itab_output2-storeno co sy-abcde.&lt;/P&gt;&lt;P&gt;WRITE: /01 'StoreNo provided', itab_output2-storeno, 'is not a number.'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSEIF itab_output2-storeno &amp;gt;= 1 AND itab_output2-storeno &amp;lt;= 9.&lt;/P&gt;&lt;P&gt;    CONCATENATE '1012'&lt;/P&gt;&lt;P&gt;                '00000'&lt;/P&gt;&lt;P&gt;                itab_output2-storeno&lt;/P&gt;&lt;P&gt;                INTO wa1-storeno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Store number came as 'IONS'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Veni.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 19:21:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432090#M824386</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-11T19:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: Error when field contains characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432091#M824387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandrasekhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried this logic also but it went into else condition when I have number also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;StoreNo provided 1795       is not a number.&lt;/P&gt;&lt;P&gt;StoreNo provided IONS       is not a number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Veni.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 19:29:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432091#M824387</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-11T19:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: Error when field contains characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432092#M824388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report  zars no standard page heading
        line-size 170
        line-count 65(4).

data : v_text(10) type c value 'IONS'.
if v_text CA sy-abcde.
  write : 'Contains char'.
endif.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 19:31:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432092#M824388</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2008-02-11T19:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: Error when field contains characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432093#M824389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ARS, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The characters comming in to Store number is not constant. With the test data I have I saw 3(IONS, NYFL, ORES) different values for it. Is there any way I can catch this with out specifying the literal. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;veni.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 19:40:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432093#M824389</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-11T19:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Error when field contains characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432094#M824390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I specify store num Ranges in CASE stmt?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Veni.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 19:41:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432094#M824390</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-11T19:41:48Z</dc:date>
    </item>
    <item>
      <title>Re: Error when field contains characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432095#M824391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report  zars no standard page heading
        line-size 170
        line-count 65(4).

if  i_output2-stroeno CA sy-abcde.
  write : 'Contains char'.
endif.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 19:44:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432095#M824391</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2008-02-11T19:44:25Z</dc:date>
    </item>
    <item>
      <title>Re: Error when field contains characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432096#M824392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when GE '1' AND LE '9'.&lt;/P&gt;&lt;P&gt;CONCATENATE '1012'  '00000' itab_output2-storeno INTO wa1-storeno.&lt;/P&gt;&lt;P&gt;when GR 9 AND LR 100.&lt;/P&gt;&lt;P&gt;CONCATENATE '1012' '0000' itab_output2-storeno INTO wa1-storeno.&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to check if it had a character.... &lt;/P&gt;&lt;P&gt;if itab-field ca sy-abcde.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 19:51:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432096#M824392</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-02-11T19:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: Error when field contains characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432097#M824393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you ARS. IF itab_output2-storeno CA sy-abcde solved the problem.&lt;/P&gt;&lt;P&gt;Thank you Jay. I will implement CASE in my program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Veni.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 20:00:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432097#M824393</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-11T20:00:25Z</dc:date>
    </item>
    <item>
      <title>Re: Error when field contains characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432098#M824394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Case stmt is not working as you mentioned. Can some one please help me, if can do this with ranges of values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting the error as 'Field "GE" is unknown. It is neither in one of the specified tables nor 	&lt;/P&gt;&lt;P&gt;defined by a "DATA" statement.'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE itab_output2-storeno.&lt;/P&gt;&lt;P&gt;      when GE '1' AND LE '9'.&lt;/P&gt;&lt;P&gt;       CONCATENATE '1012' '00000' itab_output2-storeno INTO wa1-storeno.&lt;/P&gt;&lt;P&gt;      when GE 9 AND LE 100.&lt;/P&gt;&lt;P&gt;        CONCATENATE '1012' '0000' itab_output2-storeno INTO wa1-storeno.&lt;/P&gt;&lt;P&gt;      when GE 99 AND LE 1000.&lt;/P&gt;&lt;P&gt;        CONCATENATE '1012' '000' itab_output2-storeno INTO wa1-storeno.&lt;/P&gt;&lt;P&gt;      when GE 999 AND LE 10000.&lt;/P&gt;&lt;P&gt;        CONCATENATE '1012' '00' itab_output2-storeno INTO wa1-storeno.&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Veni.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 00:47:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432098#M824394</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T00:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: Error when field contains characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432099#M824395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just simplify the code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ifitab_output2-storeno GE '1' AND itab_output2-storeno LE '9'.&lt;/P&gt;&lt;P&gt;CONCATENATE '1012' '00000' itab_output2-storeno INTO wa1-storeno.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;if itab_output2-storeno GE 9 AND itab_output2-storeno LE 100.&lt;/P&gt;&lt;P&gt;CONCATENATE '1012' '0000' itab_output2-storeno INTO wa1-storeno.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;........&lt;/P&gt;&lt;P&gt;.......&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;.......&lt;/P&gt;&lt;P&gt;{code]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 02:51:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432099#M824395</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2008-02-12T02:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: Error when field contains characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432100#M824396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you again ARS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Veni.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 23:01:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-field-contains-characters/m-p/3432100#M824396</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T23:01:44Z</dc:date>
    </item>
  </channel>
</rss>

