<?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 :MUTUALLY COMPATIBLE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-mutually-compatible/m-p/6851908#M1474474</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  If two tables are not having same structure,then we have to move the field by field....&lt;/P&gt;&lt;P&gt;loop at 1st internal table and move the field by field to the second internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: &lt;/P&gt;&lt;P&gt;begin of ty_itab1,&lt;/P&gt;&lt;P&gt;f1,f2,&lt;/P&gt;&lt;P&gt;end of ty_itab1,&lt;/P&gt;&lt;P&gt;begin of ty_itab2,&lt;/P&gt;&lt;P&gt;f1,&lt;/P&gt;&lt;P&gt;f2,&lt;/P&gt;&lt;P&gt;f3,&lt;/P&gt;&lt;P&gt;f4,&lt;/P&gt;&lt;P&gt;end of ty_itab1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: &lt;/P&gt;&lt;P&gt;itab1 TYPE TABLE OF ty_itab1 with header line,&lt;/P&gt;&lt;P&gt;itab2 TYPE TABLE OF ty_itab1 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab1.&lt;/P&gt;&lt;P&gt;itab2-f1 = itab1-f1.&lt;/P&gt;&lt;P&gt;itab2-f2 = itab2-f2.&lt;/P&gt;&lt;P&gt;append itab2.&lt;/P&gt;&lt;P&gt;clear itab2.&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;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jaya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Apr 2010 07:24:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-04-27T07:24:28Z</dc:date>
    <item>
      <title>UNICODE ERROR :MUTUALLY COMPATIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-mutually-compatible/m-p/6851904#M1474470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;H,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used the following structure and trying to move data.&lt;/P&gt;&lt;P&gt;MOVE  GT_FTP_SHIP TO GT_FTP.&lt;/P&gt;&lt;P&gt;AND GETTING UNICODE ERROR THAT GT_FTP AND  GT_FTP-SHIP ARE NOT MUTUALLY COMPATIBLE .&lt;/P&gt;&lt;P&gt;PLZ TELL ME OTHER THAN MOVE-CORRESPONDING WHAT WILL BE THE POSSIBLE SOLUTION .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF GT_FTP OCCURS 0,&lt;/P&gt;&lt;P&gt;  BELNR(15)        ,&lt;/P&gt;&lt;P&gt;  GP01(1)  TYPE X          ,&lt;/P&gt;&lt;P&gt;  BUDAT(10) ,&lt;/P&gt;&lt;P&gt;  GP02(1)  TYPE X          ,&lt;/P&gt;&lt;P&gt;  LFBNR(16)  ,&lt;/P&gt;&lt;P&gt;  GP03(1)  TYPE X          ,&lt;/P&gt;&lt;P&gt;  MBUDAT(10)  ,&lt;/P&gt;&lt;P&gt;  GP04(1)  TYPE X          ,&lt;/P&gt;&lt;P&gt;  EBELN(10) ,&lt;/P&gt;&lt;P&gt;  GP05(1)  TYPE X          ,&lt;/P&gt;&lt;P&gt;  WRBTR(25) ,&lt;/P&gt;&lt;P&gt;  CARRT(2)    TYPE X       ,&lt;/P&gt;&lt;P&gt;END OF GT_FTP .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF GT_FTP_END OCCURS 0,&lt;/P&gt;&lt;P&gt;  TXT(15) VALUE 'Grand Total    ',&lt;/P&gt;&lt;P&gt;  GPE01 TYPE X,&lt;/P&gt;&lt;P&gt;  VALI1(5) VALUE SPACE,&lt;/P&gt;&lt;P&gt;  GPE02 TYPE X,&lt;/P&gt;&lt;P&gt;  VALI2(16) VALUE SPACE,&lt;/P&gt;&lt;P&gt;  GPE03 TYPE X,&lt;/P&gt;&lt;P&gt;  VALI3(10)  VALUE SPACE,&lt;/P&gt;&lt;P&gt;  GPE04 TYPE X,&lt;/P&gt;&lt;P&gt;  VALI4(10) VALUE SPACE,&lt;/P&gt;&lt;P&gt;  GPE05 TYPE X,&lt;/P&gt;&lt;P&gt;  WRBTR(25) TYPE C,&lt;/P&gt;&lt;P&gt;  CARRT(2)    TYPE X       ,&lt;/P&gt;&lt;P&gt;END OF GT_FTP_END.&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF GT_FTP_SHIP O&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Apr 2010 06:33:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-mutually-compatible/m-p/6851904#M1474470</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-27T06:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: UNICODE ERROR :MUTUALLY COMPATIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-mutually-compatible/m-p/6851905#M1474471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then only possible option is use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And Pass field by field....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Apr 2010 06:45:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-mutually-compatible/m-p/6851905#M1474471</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-27T06:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: UNICODE ERROR :MUTUALLY COMPATIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-mutually-compatible/m-p/6851906#M1474472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In unicode system move statement will work if both structures are mutually convertible i.e identical. If the structure are not identical alternative is move-corresponding and move individually in a loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Apr 2010 06:46:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-mutually-compatible/m-p/6851906#M1474472</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-27T06:46:42Z</dc:date>
    </item>
    <item>
      <title>Re: UNICODE ERROR :MUTUALLY COMPATIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-mutually-compatible/m-p/6851907#M1474473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the problem in using move-corresponding? Also if you are in ECC6, you should replace the type x which i assume to be horizontal tab with cl_abap_char_utilities attributes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Apr 2010 06:49:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-mutually-compatible/m-p/6851907#M1474473</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-27T06:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: UNICODE ERROR :MUTUALLY COMPATIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-mutually-compatible/m-p/6851908#M1474474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  If two tables are not having same structure,then we have to move the field by field....&lt;/P&gt;&lt;P&gt;loop at 1st internal table and move the field by field to the second internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: &lt;/P&gt;&lt;P&gt;begin of ty_itab1,&lt;/P&gt;&lt;P&gt;f1,f2,&lt;/P&gt;&lt;P&gt;end of ty_itab1,&lt;/P&gt;&lt;P&gt;begin of ty_itab2,&lt;/P&gt;&lt;P&gt;f1,&lt;/P&gt;&lt;P&gt;f2,&lt;/P&gt;&lt;P&gt;f3,&lt;/P&gt;&lt;P&gt;f4,&lt;/P&gt;&lt;P&gt;end of ty_itab1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: &lt;/P&gt;&lt;P&gt;itab1 TYPE TABLE OF ty_itab1 with header line,&lt;/P&gt;&lt;P&gt;itab2 TYPE TABLE OF ty_itab1 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab1.&lt;/P&gt;&lt;P&gt;itab2-f1 = itab1-f1.&lt;/P&gt;&lt;P&gt;itab2-f2 = itab2-f2.&lt;/P&gt;&lt;P&gt;append itab2.&lt;/P&gt;&lt;P&gt;clear itab2.&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;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jaya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Apr 2010 07:24:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-mutually-compatible/m-p/6851908#M1474474</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-27T07:24:28Z</dc:date>
    </item>
    <item>
      <title>Re: UNICODE ERROR :MUTUALLY COMPATIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-mutually-compatible/m-p/6851909#M1474475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Replace the statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
MOVE GT_FTP_SHIP TO GT_FTP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;with&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
call method cl_abap_container_utilities=&amp;gt;read_container_c
exporting
im_ container = GT_FTP_SHIP
importing
ex_ value = GT_FTP
exceptions
illegal_parameter_type = 1
others = 2. 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check &lt;SPAN __jive_macro_name="message" id="8647366"&gt;&lt;/SPAN&gt; for reference&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Apr 2010 08:21:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-mutually-compatible/m-p/6851909#M1474475</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-04-27T08:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: UNICODE ERROR :MUTUALLY COMPATIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-mutually-compatible/m-p/6851910#M1474476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I m  trying to copy strusture into srtructure  which are not identical when compared with their fields length .Is their is any other method other than loop or move-statement .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Apr 2010 12:54:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-mutually-compatible/m-p/6851910#M1474476</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-27T12:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: UNICODE ERROR :MUTUALLY COMPATIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-mutually-compatible/m-p/6851911#M1474477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If both structures are different and length is different ,&lt;/P&gt;&lt;P&gt;then move is the only statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Apr 2010 14:22:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-mutually-compatible/m-p/6851911#M1474477</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-04-27T14:22:38Z</dc:date>
    </item>
  </channel>
</rss>

