<?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 Unicode conversion problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-problem/m-p/3237051#M772519</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;I am getting dump in ECC6 saying unicode conversion problem for below code. errror analysis saying that 'MOVE source TO destination is not convertible in unicode enabled program'. Plz help me in rectifying this error.&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;loop at itab into wa.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------" /&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance,&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 Dec 2007 06:11:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-31T06:11:59Z</dc:date>
    <item>
      <title>Unicode conversion problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-problem/m-p/3237051#M772519</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;I am getting dump in ECC6 saying unicode conversion problem for below code. errror analysis saying that 'MOVE source TO destination is not convertible in unicode enabled program'. Plz help me in rectifying this error.&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;loop at itab into wa.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------" /&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance,&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Dec 2007 06:11:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-problem/m-p/3237051#M772519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-31T06:11:59Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode conversion problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-problem/m-p/3237052#M772520</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;What is the type of itab and wa.are they same?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Dec 2007 06:17:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-problem/m-p/3237052#M772520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-31T06:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode conversion problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-problem/m-p/3237053#M772521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stephen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try &lt;STRONG&gt;ASSIGN&lt;/STRONG&gt; instead of MOVE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward pts if help.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Deepanker&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN &amp;lt;f&amp;gt;[+&amp;lt;o&amp;gt;][(&amp;lt;l&amp;gt;)] TO &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you assign parts of fields to a field symbol, the following special conditions apply:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The system does not check whether the selected part lies inside the field &amp;lt;f&amp;gt;. Both offset &amp;lt;o&amp;gt; and length &amp;lt;l&amp;gt; can be larger than the length of &amp;lt;f&amp;gt;. You can address memory beyond the boundary of &amp;lt;f&amp;gt;, but not beyond the data areas for field symbols. &lt;/P&gt;&lt;P&gt;If you do not specify the length &amp;lt;l&amp;gt;, the system automatically uses the length of the field &amp;lt;f&amp;gt;. If &amp;lt;o&amp;gt; is greater than zero, &amp;lt;FS&amp;gt; always points to an area beyond the limits of &amp;lt;f&amp;gt;. &lt;/P&gt;&lt;P&gt;If &amp;lt;o&amp;gt; is smaller than the length of &amp;lt;f&amp;gt;, you can enter an asterisk (*) for &amp;lt;l&amp;gt; to prevent &amp;lt;FS&amp;gt; from referring to an address beyond the limits of &amp;lt;f&amp;gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward pts if help.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Dec 2007 06:29:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-problem/m-p/3237053#M772521</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-31T06:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode conversion problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-problem/m-p/3237054#M772522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;Thanks for ur kind response. The problem has been solved. Below link describes the problem which I got, based on that I resolved the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/79/c5547cb3dc11d5993800508b6b8b11/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/79/c5547cb3dc11d5993800508b6b8b11/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Dec 2007 06:49:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-problem/m-p/3237054#M772522</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-31T06:49:09Z</dc:date>
    </item>
  </channel>
</rss>

