<?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: Data objects in unicode program are not convertible in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-objects-in-unicode-program-are-not-convertible/m-p/3330088#M797756</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To avoid error you can try,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT &amp;lt;dyn_table&amp;gt; INTO &amp;lt;dyn_wa&amp;gt;.&lt;/P&gt;&lt;P&gt;concatenate &amp;lt;dyn_table&amp;gt;-f1 &amp;lt;dyn_table&amp;gt;-f2 into LOG separated by space.&lt;/P&gt;&lt;P&gt;**MOVE &amp;lt;dyn_wa&amp;gt; TO LOG.&lt;/P&gt;&lt;P&gt;APPEND LOG.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I would suggest you to go through the unicode conversion PDF available in SDN as there are lot of conversion rules applicable regarding structure mapping.&lt;/P&gt;&lt;P&gt;You can no more map a whole work area into a single field.You have to map individual fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Jan 2008 09:29:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-23T09:29:42Z</dc:date>
    <item>
      <title>Data objects in unicode program are not convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-objects-in-unicode-program-are-not-convertible/m-p/3330087#M797755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOOP AT &amp;lt;dyn_table&amp;gt; INTO &amp;lt;dyn_wa&amp;gt;.&lt;/P&gt;&lt;P&gt;    MOVE &amp;lt;dyn_wa&amp;gt; TO LOG.&lt;/P&gt;&lt;P&gt;    APPEND LOG.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above code is leading to dump saying that "Data objects in unicode program are not convertible" while i was trying to Move non-char (like DATS, QUAN etc) data to LOG. But i'm getting the desired result when i pass Char data to LOG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where LOG is structure of TAB512. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pl. give your inputs to correct the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 09:10:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-objects-in-unicode-program-are-not-convertible/m-p/3330087#M797755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T09:10:08Z</dc:date>
    </item>
    <item>
      <title>Re: Data objects in unicode program are not convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-objects-in-unicode-program-are-not-convertible/m-p/3330088#M797756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To avoid error you can try,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT &amp;lt;dyn_table&amp;gt; INTO &amp;lt;dyn_wa&amp;gt;.&lt;/P&gt;&lt;P&gt;concatenate &amp;lt;dyn_table&amp;gt;-f1 &amp;lt;dyn_table&amp;gt;-f2 into LOG separated by space.&lt;/P&gt;&lt;P&gt;**MOVE &amp;lt;dyn_wa&amp;gt; TO LOG.&lt;/P&gt;&lt;P&gt;APPEND LOG.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I would suggest you to go through the unicode conversion PDF available in SDN as there are lot of conversion rules applicable regarding structure mapping.&lt;/P&gt;&lt;P&gt;You can no more map a whole work area into a single field.You have to map individual fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 09:29:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-objects-in-unicode-program-are-not-convertible/m-p/3330088#M797756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T09:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: Data objects in unicode program are not convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-objects-in-unicode-program-are-not-convertible/m-p/3330089#M797757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Sudhir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply. I tried with "Concatenate" statement, even then also, it's not allowing to append the non-char value, throwing error as " the arguement can take only char type data object".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank u&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 10:14:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-objects-in-unicode-program-are-not-convertible/m-p/3330089#M797757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T10:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: Data objects in unicode program are not convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-objects-in-unicode-program-are-not-convertible/m-p/3330090#M797758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mahesh,&lt;/P&gt;&lt;P&gt;just replace MOVE-CORRSPONDING at MOVE staement. i think it may work.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sirisha reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 10:33:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-objects-in-unicode-program-are-not-convertible/m-p/3330090#M797758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T10:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: Data objects in unicode program are not convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-objects-in-unicode-program-are-not-convertible/m-p/3330091#M797759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Sirisha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unluckily, the MOVE-CORRESPONDING will not work, as the structure contains single field with long Char length; In which, i'm trying to push the whole work-area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank u&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 10:51:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-objects-in-unicode-program-are-not-convertible/m-p/3330091#M797759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T10:51:52Z</dc:date>
    </item>
  </channel>
</rss>

