<?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: Unicode Error: Help in rectifying in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-help-in-rectifying/m-p/5435768#M1247015</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;In Unicode programs, all data objects of the sequence must lie within one structure. If in the syntax check, this cannot be recognized statically, you must specify a structure range with addition RANGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
ADD numbers-one  THEN numbers-two
                UNTIL numbers-three
                GIVING sum.
&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>Wed, 01 Apr 2009 14:42:59 GMT</pubDate>
    <dc:creator>former_member194669</dc:creator>
    <dc:date>2009-04-01T14:42:59Z</dc:date>
    <item>
      <title>Unicode Error: Help in rectifying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-help-in-rectifying/m-p/5435766#M1247013</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;The below code is giving me an Unicode error. &lt;/P&gt;&lt;P&gt;Especially &amp;lt;number&amp;gt; gives the Unicode error. &lt;/P&gt;&lt;P&gt;Let me know how to rectify the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code:  &lt;DEL&gt;- start&lt;/DEL&gt;-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FIELD-SYMBOLS: &amp;lt;number&amp;gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DATA: BEGIN OF NUMBERS,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;           &lt;STRONG&gt;ONE    TYPE P VALUE 10,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;           &lt;STRONG&gt;TWO    TYPE P VALUE 20,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;           &lt;STRONG&gt;THREE TYPE P VALUE 30,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;           &lt;STRONG&gt;FOUR   TYPE P VALUE 40,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;           &lt;STRONG&gt;FIVE     TYPE P VALUE 50,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;          &lt;STRONG&gt;END   OF NUMBERS.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DATA  SUM TYPE I.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;assign NUMBERS-two to &amp;lt;number&amp;gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ADD &amp;lt;number&amp;gt; FROM 1 TO 3 GIVING SUM.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code:  --- end ---&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Purshoth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2009 14:11:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-help-in-rectifying/m-p/5435766#M1247013</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-01T14:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode Error: Help in rectifying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-help-in-rectifying/m-p/5435767#M1247014</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;you need to change field symbol declaration part like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;number&amp;gt; type any.&amp;lt;-------here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF NUMBERS,&lt;/P&gt;&lt;P&gt;ONE TYPE P VALUE 10,&lt;/P&gt;&lt;P&gt;TWO TYPE P VALUE 20,&lt;/P&gt;&lt;P&gt;THREE TYPE P VALUE 30,&lt;/P&gt;&lt;P&gt;FOUR TYPE P VALUE 40,&lt;/P&gt;&lt;P&gt;FIVE TYPE P VALUE 50,&lt;/P&gt;&lt;P&gt;END OF NUMBERS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA SUM TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign NUMBERS-two to &amp;lt;number&amp;gt;.&lt;/P&gt;&lt;P&gt;ADD &amp;lt;number&amp;gt; FROM 1 TO 3 GIVING SUM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Peranandam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2009 14:32:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-help-in-rectifying/m-p/5435767#M1247014</guid>
      <dc:creator>Peranandam</dc:creator>
      <dc:date>2009-04-01T14:32:15Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode Error: Help in rectifying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-help-in-rectifying/m-p/5435768#M1247015</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;In Unicode programs, all data objects of the sequence must lie within one structure. If in the syntax check, this cannot be recognized statically, you must specify a structure range with addition RANGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
ADD numbers-one  THEN numbers-two
                UNTIL numbers-three
                GIVING sum.
&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>Wed, 01 Apr 2009 14:42:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-help-in-rectifying/m-p/5435768#M1247015</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-04-01T14:42:59Z</dc:date>
    </item>
  </channel>
</rss>

