<?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: Debuginng in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/debuginng/m-p/3045059#M720786</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;&amp;lt;b&amp;gt;Changing Internal Tables&amp;lt;/b&amp;gt;You can change the contents of internal tables in the Debugger at runtime. You can delete, edit, or add table lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Deleting Lines&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;To delete a line from an internal table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.	Open the internal table display mode. &lt;/P&gt;&lt;P&gt;2.	In the Internal table field, enter the name of the table. &lt;/P&gt;&lt;P&gt;3.	Choose ENTER . The system displays the contents of the table. &lt;/P&gt;&lt;P&gt;4.	Position the cursor on the line that you want to delete. &lt;/P&gt;&lt;P&gt;5.	Choose Delete. The line is removed from the table, and the system &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;automatically corrects the line numbering.&lt;/P&gt;&lt;P&gt;Changing Lines&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Change, Insert, and Append functions are field-specific, and can only be used for a single field at a time. Suppose you want to edit the following line:&lt;/P&gt;&lt;P&gt;LH001 FRANKFURT NEW YORK 145400 400 X&lt;/P&gt;&lt;P&gt;First, you have to decide which field you want to edit. Then:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.	Position the cursor on the relevant field in the line that you want to edit. &lt;/P&gt;&lt;P&gt;2.	Choose Change. The field appears in input mode. &lt;/P&gt;&lt;P&gt;3.	Enter a new value for the field. &lt;/P&gt;&lt;P&gt;4.	Choose ENTER . The system updates the line and displays the changed contents in the table.&lt;/P&gt;&lt;P&gt;Inserting Lines&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Insert and Append functions allow you to add a new line to an internal table. If you choose Append, the new line is added to the end of the table. If you choose Insert, you can add the new line at any position in the table. To insert a new line at the end of the table:&lt;/P&gt;&lt;P&gt;1.	Choose Append. &lt;/P&gt;&lt;P&gt;2.	Enter a value for the first field of the line. &lt;/P&gt;&lt;P&gt;3.	Choose ENTER . The system adds a new line to the end of the table, containing the value that you entered for the first field. &lt;/P&gt;&lt;P&gt;4.	Enter values in the remaining fields as described above.&lt;/P&gt;&lt;P&gt;If you want to add a line in the middle of the internal table, place the cursor on the line after which you want to insert it. Choose Insert, then follow the procedure described above from step 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if usefull&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Nov 2007 06:35:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-14T06:35:17Z</dc:date>
    <item>
      <title>Debuginng</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debuginng/m-p/3045055#M720782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Debugging what is the use of Insert and Append TABS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Nov 2007 06:30:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debuginng/m-p/3045055#M720782</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-14T06:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: Debuginng</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debuginng/m-p/3045056#M720783</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;  Insert is used to insert the record into internal table and append is used to append the row into internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Nov 2007 06:32:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debuginng/m-p/3045056#M720783</guid>
      <dc:creator>former_member386202</dc:creator>
      <dc:date>2007-11-14T06:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: Debuginng</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debuginng/m-p/3045057#M720784</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 Insert and Append functions allow you to add a new line to an internal table. If you choose Append, the new line is added to the end of the table. If you choose Insert, you can add the new line at any position in the table. To insert a new line at the end of the table:&lt;/P&gt;&lt;P&gt;1. Choose Append. &lt;/P&gt;&lt;P&gt;2. Enter a value for the first field of the line. &lt;/P&gt;&lt;P&gt;3. Choose ENTER . The system adds a new line to the end of the table, containing the value that you entered for the first field. &lt;/P&gt;&lt;P&gt;4. Enter values in the remaining fields as described above.&lt;/P&gt;&lt;P&gt;If you want to add a line in the middle of the internal table, place the cursor on the line after which you want to insert it. Choose Insert, then follow the procedure described above from step 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if usefull&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Nov 2007 06:32:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debuginng/m-p/3045057#M720784</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-14T06:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: Debuginng</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debuginng/m-p/3045058#M720785</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;   this following thread will answer for your question&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="411355"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Nov 2007 06:33:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debuginng/m-p/3045058#M720785</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-14T06:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: Debuginng</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debuginng/m-p/3045059#M720786</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;&amp;lt;b&amp;gt;Changing Internal Tables&amp;lt;/b&amp;gt;You can change the contents of internal tables in the Debugger at runtime. You can delete, edit, or add table lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Deleting Lines&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;To delete a line from an internal table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.	Open the internal table display mode. &lt;/P&gt;&lt;P&gt;2.	In the Internal table field, enter the name of the table. &lt;/P&gt;&lt;P&gt;3.	Choose ENTER . The system displays the contents of the table. &lt;/P&gt;&lt;P&gt;4.	Position the cursor on the line that you want to delete. &lt;/P&gt;&lt;P&gt;5.	Choose Delete. The line is removed from the table, and the system &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;automatically corrects the line numbering.&lt;/P&gt;&lt;P&gt;Changing Lines&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Change, Insert, and Append functions are field-specific, and can only be used for a single field at a time. Suppose you want to edit the following line:&lt;/P&gt;&lt;P&gt;LH001 FRANKFURT NEW YORK 145400 400 X&lt;/P&gt;&lt;P&gt;First, you have to decide which field you want to edit. Then:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.	Position the cursor on the relevant field in the line that you want to edit. &lt;/P&gt;&lt;P&gt;2.	Choose Change. The field appears in input mode. &lt;/P&gt;&lt;P&gt;3.	Enter a new value for the field. &lt;/P&gt;&lt;P&gt;4.	Choose ENTER . The system updates the line and displays the changed contents in the table.&lt;/P&gt;&lt;P&gt;Inserting Lines&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Insert and Append functions allow you to add a new line to an internal table. If you choose Append, the new line is added to the end of the table. If you choose Insert, you can add the new line at any position in the table. To insert a new line at the end of the table:&lt;/P&gt;&lt;P&gt;1.	Choose Append. &lt;/P&gt;&lt;P&gt;2.	Enter a value for the first field of the line. &lt;/P&gt;&lt;P&gt;3.	Choose ENTER . The system adds a new line to the end of the table, containing the value that you entered for the first field. &lt;/P&gt;&lt;P&gt;4.	Enter values in the remaining fields as described above.&lt;/P&gt;&lt;P&gt;If you want to add a line in the middle of the internal table, place the cursor on the line after which you want to insert it. Choose Insert, then follow the procedure described above from step 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if usefull&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Nov 2007 06:35:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debuginng/m-p/3045059#M720786</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-14T06:35:17Z</dc:date>
    </item>
  </channel>
</rss>

