<?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: Cann't move data between two internal table in Unicode program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/cann-t-move-data-between-two-internal-table-in-unicode-program/m-p/2933328#M691196</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;The structure are different thats why you getting this error. But there must be some fields common to which you want to move data. So you change in that way.&lt;/P&gt;&lt;P&gt;And there will be no impact whatsoever because of such change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Oct 2007 07:26:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-16T07:26:22Z</dc:date>
    <item>
      <title>Cann't move data between two internal table in Unicode program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cann-t-move-data-between-two-internal-table-in-unicode-program/m-p/2933325#M691193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello expert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I import a program from old sap system to new system, but syntax error occurred --- ' L_T_S776[] = T_DATA_RECORDS[]. ', &lt;/P&gt;&lt;P&gt; it is said ' internal table L_T_S776 and T_DATA_RECORDS are not mutually convertible, in unicode program, two internal tables must have the same structure layout'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The coding is:&lt;/P&gt;&lt;P&gt;DATA: L_T_S776 LIKE S776 OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: L_T_S777 LIKE S777 OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;F_S776&amp;gt; TYPE S776.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;F_S777&amp;gt; TYPE S777.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF NOT ZCL_USEREXIT=&amp;gt;IS_ACTIVE( PROJN = 11 EXITN = 34 ) IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE I_RMCP2-SCTYP.&lt;/P&gt;&lt;P&gt;    WHEN 'Z776'.&lt;/P&gt;&lt;P&gt;      L_T_S776[] = T_DATA_RECORDS[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LOOP AT L_T_S776 ASSIGNING &amp;lt;F_S776&amp;gt;.&lt;/P&gt;&lt;P&gt;        &amp;lt;F_S776&amp;gt;-ZZCUSER = SY-UNAME.&lt;/P&gt;&lt;P&gt;        &amp;lt;F_S776&amp;gt;-ZZCDATE = SY-DATUM.&lt;/P&gt;&lt;P&gt;        &amp;lt;F_S776&amp;gt;-ZZCTIME = SY-TIMLO.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;     T_DATA_RECORDS[] = L_T_S776[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN OTHERS.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;internal table T_DATA_RECORDS is defined to like INDX.&lt;/P&gt;&lt;P&gt;this program is in function module EXIT_SAPMMCP6_011, it is a user_exit.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also confuse the meaning of this part of coding, could anybody help me? &lt;/P&gt;&lt;P&gt;reward if got useful reply, thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;H.B&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 07:11:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cann-t-move-data-between-two-internal-table-in-unicode-program/m-p/2933325#M691193</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T07:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: Cann't move data between two internal table in Unicode program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cann-t-move-data-between-two-internal-table-in-unicode-program/m-p/2933326#M691194</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;the simple solution for this is instead of moving all the data at a time move field by field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 07:13:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cann-t-move-data-between-two-internal-table-in-unicode-program/m-p/2933326#M691194</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T07:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: Cann't move data between two internal table in Unicode program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cann-t-move-data-between-two-internal-table-in-unicode-program/m-p/2933327#M691195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;but we cann't move data field by field, because the structure of that two internal tables are different,&lt;/P&gt;&lt;P&gt;besides, I don't know the effect of that part of coding.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 07:22:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cann-t-move-data-between-two-internal-table-in-unicode-program/m-p/2933327#M691195</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T07:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: Cann't move data between two internal table in Unicode program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cann-t-move-data-between-two-internal-table-in-unicode-program/m-p/2933328#M691196</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;The structure are different thats why you getting this error. But there must be some fields common to which you want to move data. So you change in that way.&lt;/P&gt;&lt;P&gt;And there will be no impact whatsoever because of such change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 07:26:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cann-t-move-data-between-two-internal-table-in-unicode-program/m-p/2933328#M691196</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T07:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: Cann't move data between two internal table in Unicode program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cann-t-move-data-between-two-internal-table-in-unicode-program/m-p/2933329#M691197</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;the data moving is not separated by field, but by char length.&lt;/P&gt;&lt;P&gt;So I cann't move data by field, besides,  T_DATA_RECORDS doesn't include fields SY-UNAME, SY-DATUM and SY-TIMLO. Please have a look at database INDX. Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 08:07:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cann-t-move-data-between-two-internal-table-in-unicode-program/m-p/2933329#M691197</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T08:07:48Z</dc:date>
    </item>
  </channel>
</rss>

