<?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: Error when move the itab in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-move-the-itab/m-p/2433592#M544122</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just used your code and it is working fine in my system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of it occurs 0,&lt;/P&gt;&lt;P&gt;test TYPE char4,&lt;/P&gt;&lt;P&gt;end of it.&lt;/P&gt;&lt;P&gt;data : itab like it occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of itab1 occurs 0,&lt;/P&gt;&lt;P&gt;test TYPE char4,&lt;/P&gt;&lt;P&gt;test1 TYPE char5,&lt;/P&gt;&lt;P&gt;end of itab1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab-test = 'abcd'.&lt;/P&gt;&lt;P&gt;APPEND itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Move-corresponding itab to itab1.&lt;/P&gt;&lt;P&gt;APPEND itab1.&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;WRITE itab1.&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, 26 Jun 2007 01:57:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-26T01:57:48Z</dc:date>
    <item>
      <title>Error when move the itab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-move-the-itab/m-p/2433589#M544119</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;      I am facing an error that it is not a internal table or structure when moving an itab to itab1 using the code&lt;/P&gt;&lt;P&gt;data: begin of it occurs 0,&lt;/P&gt;&lt;P&gt;         .&lt;/P&gt;&lt;P&gt;        end of it.&lt;/P&gt;&lt;P&gt;data : itab like it occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of itab1 occurs 0,&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;         end of itab1.&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;&lt;/P&gt;&lt;P&gt;     Move-corresponding itab to itab1.&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;  so help me to solve this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Deesanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2007 01:47:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-move-the-itab/m-p/2433589#M544119</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-26T01:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: Error when move the itab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-move-the-itab/m-p/2433590#M544120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See the changes with comments&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: begin of it occurs 0 with header line, " include header line here
.
end of it.

data : begin of itab1 occurs 0,
.
end of itab1.


loop at it. " change itab to it

Move-corresponding it to itab1.

endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2007 01:56:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-move-the-itab/m-p/2433590#M544120</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-06-26T01:56:12Z</dc:date>
    </item>
    <item>
      <title>Re: Error when move the itab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-move-the-itab/m-p/2433591#M544121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deesanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should not get that error. there must be something wrong in your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please paste your whole code here.&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, 26 Jun 2007 01:56:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-move-the-itab/m-p/2433591#M544121</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-26T01:56:19Z</dc:date>
    </item>
    <item>
      <title>Re: Error when move the itab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-move-the-itab/m-p/2433592#M544122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just used your code and it is working fine in my system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of it occurs 0,&lt;/P&gt;&lt;P&gt;test TYPE char4,&lt;/P&gt;&lt;P&gt;end of it.&lt;/P&gt;&lt;P&gt;data : itab like it occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of itab1 occurs 0,&lt;/P&gt;&lt;P&gt;test TYPE char4,&lt;/P&gt;&lt;P&gt;test1 TYPE char5,&lt;/P&gt;&lt;P&gt;end of itab1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab-test = 'abcd'.&lt;/P&gt;&lt;P&gt;APPEND itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Move-corresponding itab to itab1.&lt;/P&gt;&lt;P&gt;APPEND itab1.&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;WRITE itab1.&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, 26 Jun 2007 01:57:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-move-the-itab/m-p/2433592#M544122</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-26T01:57:48Z</dc:date>
    </item>
  </channel>
</rss>

