<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/2091821#M434998</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mandeep,&lt;/P&gt;&lt;P&gt;           Make thesecond table as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of i_tab2,&lt;/P&gt;&lt;P&gt; record type string,&lt;/P&gt;&lt;P&gt;end of i_tab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then use move statement          &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;Hemant&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Hemant Goyal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 May 2007 11:46:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-11T11:46:27Z</dc:date>
    <item>
      <title>Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/2091816#M434993</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 this error.&lt;/P&gt;&lt;P&gt;both these tables( with header line) have no common fields.&lt;/P&gt;&lt;P&gt;and error is coming in this lines of code :&lt;/P&gt;&lt;P&gt;MOVE I_TIMS_TAB   TO BOL_DETAIL_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error : "BOL_DETAIL_TAB" and "I_TIMS_TAB" are not mutually convertible.In Unicode programs, "BOL_DETAIL_TAB" must have the same structure layout as "I_TIMS_TAB", independent of the length of a Unicode character.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what should be substitute of this line of code in unicode compliant system without any damage to data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards&lt;/P&gt;&lt;P&gt;Mandeep.&lt;/P&gt;&lt;P&gt;Helpful answers will be rewarded.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2007 13:46:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/2091816#M434993</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-03T13:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/2091817#M434994</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 cannot copy itabs whose datatypes are not same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but u can do like tyhis.(field names should be same for this..)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt; begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;  f1 type i,&lt;/P&gt;&lt;P&gt;  f2 type c,&lt;/P&gt;&lt;P&gt; end of itab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; data:&lt;/P&gt;&lt;P&gt; begin of gtab occurs 0,&lt;/P&gt;&lt;P&gt;  f1 type c,&lt;/P&gt;&lt;P&gt;  f2 type c,&lt;/P&gt;&lt;P&gt; end of gtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt; move-corresponding itab to gtab.&lt;/P&gt;&lt;P&gt; append gtab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Rammohan Nagam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2007 13:54:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/2091817#M434994</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-03T13:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/2091818#M434995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try with this CALL METHOD CL_HR_PNNNN_TYPE_CAST=&amp;gt;PNNNN_TO_PRELP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 11:32:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/2091818#M434995</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T11:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/2091819#M434996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mandeep,&lt;/P&gt;&lt;P&gt;                  You can't move data of itab1 to itab2 if they are having different structure, different data elements.&lt;/P&gt;&lt;P&gt;either use same data elements to all the fiels in both table. or make the second table as string and then use this command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Hemant&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Hemant Goyal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 11:45:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/2091819#M434996</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T11:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/2091820#M434997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi manipal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my suggestion is to create a internal tabe which consists fields of both our database tables and &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; move databasetable1[] to internal table[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at internal table.&lt;/P&gt;&lt;P&gt;   move-corresponding fields of internaltable to database table2.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful reward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;suresh babu aluri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 11:46:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/2091820#M434997</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T11:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/2091821#M434998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mandeep,&lt;/P&gt;&lt;P&gt;           Make thesecond table as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of i_tab2,&lt;/P&gt;&lt;P&gt; record type string,&lt;/P&gt;&lt;P&gt;end of i_tab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then use move statement          &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;Hemant&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Hemant Goyal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 11:46:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/2091821#M434998</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T11:46:27Z</dc:date>
    </item>
  </channel>
</rss>

