<?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 modify insert dump in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-insert-dump/m-p/3529276#M849073</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why do i get a dump when i use modify or insert?? i do not want to use append because then i get a blank record on adding  a record to my table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE user_command_0020 INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab_line .&lt;/P&gt;&lt;P&gt;if itab_line-v eq 'X'  .&lt;/P&gt;&lt;P&gt;FLAG_S = 1.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*CLEAR SY-UCOMM.&lt;/P&gt;&lt;P&gt;if flag_s eq 1 AND SY-UCOMM EQ 'TABLE_SCHEDULE_INSR'.&lt;/P&gt;&lt;P&gt;temp_index = sy-tabix.&lt;/P&gt;&lt;P&gt;temp_ebelp = itab_line-ebelp.&lt;/P&gt;&lt;P&gt;itab_schedule-ebelp = temp_ebelp.&lt;/P&gt;&lt;P&gt;temp_index = temp_index + 1.&lt;/P&gt;&lt;P&gt;append itab_schedule.&lt;/P&gt;&lt;P&gt;*insert itab_schedule into itab_schedule index temp_index.&lt;/P&gt;&lt;P&gt;*modify ITAB_SCHEDULE from itab_schedule index sy-tabix.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Feb 2008 13:35:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-27T13:35:53Z</dc:date>
    <item>
      <title>modify insert dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-insert-dump/m-p/3529276#M849073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why do i get a dump when i use modify or insert?? i do not want to use append because then i get a blank record on adding  a record to my table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE user_command_0020 INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab_line .&lt;/P&gt;&lt;P&gt;if itab_line-v eq 'X'  .&lt;/P&gt;&lt;P&gt;FLAG_S = 1.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*CLEAR SY-UCOMM.&lt;/P&gt;&lt;P&gt;if flag_s eq 1 AND SY-UCOMM EQ 'TABLE_SCHEDULE_INSR'.&lt;/P&gt;&lt;P&gt;temp_index = sy-tabix.&lt;/P&gt;&lt;P&gt;temp_ebelp = itab_line-ebelp.&lt;/P&gt;&lt;P&gt;itab_schedule-ebelp = temp_ebelp.&lt;/P&gt;&lt;P&gt;temp_index = temp_index + 1.&lt;/P&gt;&lt;P&gt;append itab_schedule.&lt;/P&gt;&lt;P&gt;*insert itab_schedule into itab_schedule index temp_index.&lt;/P&gt;&lt;P&gt;*modify ITAB_SCHEDULE from itab_schedule index sy-tabix.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 13:35:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-insert-dump/m-p/3529276#M849073</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T13:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: modify insert dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-insert-dump/m-p/3529277#M849074</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;In your code when you say &lt;STRONG&gt;insert&lt;/STRONG&gt;  do not write &lt;STRONG&gt;index&lt;/STRONG&gt; then it should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:&lt;/P&gt;&lt;P&gt;INSERT LINES OF &amp;lt;itab1&amp;gt; [FROM &amp;lt;n1&amp;gt;] [TO &amp;lt;n 2&amp;gt;] INTO TABLE &amp;lt;itab2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;itab1&amp;gt; and &amp;lt;itab2&amp;gt; are tables with a compatible line type. The system inserts the lines of table &amp;lt;itab1&amp;gt; one by one into &amp;lt;itab2&amp;gt; using the same rules as for single lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If &amp;lt;itab1&amp;gt; is an index table, you can specify the first and last lines of the table that you want to append in &amp;lt;n 1 &amp;gt; and &amp;lt;n 2 &amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this URL&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/9f/dbac1d35c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/9f/dbac1d35c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&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;Lakshmikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 13:56:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-insert-dump/m-p/3529277#M849074</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T13:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: modify insert dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-insert-dump/m-p/3529278#M849075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;modify ITAB_SCHEDULE from itab_schedule index sy-tabix&lt;/P&gt;&lt;P&gt;transporting  ebelp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;ravi shankar reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 13:57:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-insert-dump/m-p/3529278#M849075</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T13:57:51Z</dc:date>
    </item>
  </channel>
</rss>

