<?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 ABAP internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-internal-table/m-p/10603184#M1862158</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Is it possible to use MODIFY statement on an internal table with no entries?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Modify itab index 1 from wa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above statement is not populating itab even though entries r there in wa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Tanvi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Oct 2014 07:30:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-10-07T07:30:44Z</dc:date>
    <item>
      <title>ABAP internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-internal-table/m-p/10603184#M1862158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Is it possible to use MODIFY statement on an internal table with no entries?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Modify itab index 1 from wa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above statement is not populating itab even though entries r there in wa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Tanvi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2014 07:30:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-internal-table/m-p/10603184#M1862158</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-10-07T07:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-internal-table/m-p/10603185#M1862159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The MODIFY statement changes an &lt;SPAN style="text-decoration: underline;"&gt;existing&lt;/SPAN&gt; row in the internal table (like an UPDATE SQL statement). Please check the ABAP help. &lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp60_sp/helpdata/en/fc/eb35eb358411d1829f0000e829fbfe/content.htm"&gt;http://help.sap.com/saphelp_erp60_sp/helpdata/en/fc/eb35eb358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.sap.com/saphelp_45b/helpdata/en/34/8e72f96df74873e10000009b38f9b8/content.htm"&gt;https://help.sap.com/saphelp_45b/helpdata/en/34/8e72f96df74873e10000009b38f9b8/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to insert a new row in your table, use INSERT or APPEND statements.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2014 10:22:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-internal-table/m-p/10603185#M1862159</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-10-07T10:22:32Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-internal-table/m-p/10603186#M1862160</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 given statement will not work because the index 1 doesn't exist in an empty internal table.&lt;/P&gt;&lt;P&gt;And I'm wondering why this statement didn't cause any dump, as you are trying to access/modify a location that does not exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And we can modify an internal table with respect to a key or index. But in an empty internal table there is&amp;nbsp; no key/index available to compare and modify.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If we want to know the internal table is empty or not, we can read the table with index 1 or key( if you want to check the existence of a particular entry .) Then perform the further processing according to the value of sy-subrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jesse Owens K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2014 10:38:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-internal-table/m-p/10603186#M1862160</guid>
      <dc:creator>J_OWENS</dc:creator>
      <dc:date>2014-10-07T10:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-internal-table/m-p/10603187#M1862161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It does not create a dump because it simply sets sy-subrc to 4 if it cannot find the specified table line. To better test if the table is empty, we can either use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab[] IS INITIAL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lines( itab ) = 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Serban&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2014 10:48:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-internal-table/m-p/10603187#M1862161</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-10-07T10:48:26Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-internal-table/m-p/10603188#M1862162</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 internal table is empty and you are trying to modify internal table with work area. As the table is empty, it should add records to internal table from work area. It is not populating any record to internal table because you are using 'Index' clasue in modify statement. Here, there is no index as internal table is initial. Try to remove 'Index' from that statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Oct 2014 07:47:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-internal-table/m-p/10603188#M1862162</guid>
      <dc:creator>former_member210621</dc:creator>
      <dc:date>2014-10-09T07:47:10Z</dc:date>
    </item>
  </channel>
</rss>

