<?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: not mutually convertible in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-mutually-convertible/m-p/2935121#M691671</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;as the structures L_T_TEST and T_INDX are different u cannot move directly...in the new SAP version...in order to achieve ur functionality u have to move field by field to it..try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming field1 ,field2 and field3 are thre in both the tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT L_T_TEST .&lt;/P&gt;&lt;P&gt;move :L_T_TEST -field1 to t_indx-field1,&lt;/P&gt;&lt;P&gt;          L_T_TEST -field2 to t_indx-field2,&lt;/P&gt;&lt;P&gt;          L_T_TEST -field3 to t_indx-field3.&lt;/P&gt;&lt;P&gt;append t_indx.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Oct 2007 07:38:58 GMT</pubDate>
    <dc:creator>former_member404244</dc:creator>
    <dc:date>2007-10-16T07:38:58Z</dc:date>
    <item>
      <title>not mutually convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-mutually-convertible/m-p/2935120#M691670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I import the following paragraph of code from non-unicode system to unicode system, I met a problem related to 'not mutually convertible'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     L_T_TEST[] = T_INDX[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LOOP AT L_T_TEST ASSIGNING &amp;lt;F_TEST&amp;gt;.&lt;/P&gt;&lt;P&gt;        &amp;lt;F_TEST&amp;gt;-ZUNAME = SY-UNAME.&lt;/P&gt;&lt;P&gt;        &amp;lt;F_TEST&amp;gt;-ZDATUM  = SY-DATUM.&lt;/P&gt;&lt;P&gt;        &amp;lt;F_TEST&amp;gt;-ZTIMLO    = SY-TIMLO.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;      T_INDX[] = L_T_TEST[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T_INDX STRUCTURE  INDX.&lt;/P&gt;&lt;P&gt;L_T_TEST like other structure(structure A).&lt;/P&gt;&lt;P&gt;&amp;lt;F_TEST&amp;gt; refer to the same structure as L_T_TEST.&lt;/P&gt;&lt;P&gt;Structure A is totally different from table INDX, so in unicode system this paragraph of code is not allowed.&lt;/P&gt;&lt;P&gt;Notes: Field CLUSTD in table INDX is quite especial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could anyone help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Best regards,&lt;/P&gt;&lt;P&gt;Christina&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 07:33:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-mutually-convertible/m-p/2935120#M691670</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T07:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: not mutually convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-mutually-convertible/m-p/2935121#M691671</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;as the structures L_T_TEST and T_INDX are different u cannot move directly...in the new SAP version...in order to achieve ur functionality u have to move field by field to it..try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming field1 ,field2 and field3 are thre in both the tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT L_T_TEST .&lt;/P&gt;&lt;P&gt;move :L_T_TEST -field1 to t_indx-field1,&lt;/P&gt;&lt;P&gt;          L_T_TEST -field2 to t_indx-field2,&lt;/P&gt;&lt;P&gt;          L_T_TEST -field3 to t_indx-field3.&lt;/P&gt;&lt;P&gt;append t_indx.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 07:38:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-mutually-convertible/m-p/2935121#M691671</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2007-10-16T07:38:58Z</dc:date>
    </item>
    <item>
      <title>Re: not mutually convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-mutually-convertible/m-p/2935122#M691672</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 can not asssign two diffrerent structure in Unicode Environment.&lt;/P&gt;&lt;P&gt; Try using move corresponding and move common individual fields  to  other wor area and append it to itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 07:40:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-mutually-convertible/m-p/2935122#M691672</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T07:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: not mutually convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-mutually-convertible/m-p/2935123#M691673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Nagaraj &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, there is no corresponding fields in T_INDX. &lt;/P&gt;&lt;P&gt;From my point of view, basing on the psotion of fields, all these three fields will go to field CLUSTD in table INDX finally.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 07:43:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-mutually-convertible/m-p/2935123#M691673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T07:43:44Z</dc:date>
    </item>
  </channel>
</rss>

