<?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 Internal Table Clarifications in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-clarifications/m-p/3751592#M902540</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I have a small doubt in Internal table. Say I have an internal table itab[] with around 1000 entries in it. I want to set a particular field of the Internal table to the same value for all the 1000 entries in the internal table. &lt;/P&gt;&lt;P&gt;  Apart from looping over the internal table is there any better way like modify all entries....and setting the field to a particular value or something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 May 2008 07:47:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-05T07:47:46Z</dc:date>
    <item>
      <title>Internal Table Clarifications</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-clarifications/m-p/3751592#M902540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I have a small doubt in Internal table. Say I have an internal table itab[] with around 1000 entries in it. I want to set a particular field of the Internal table to the same value for all the 1000 entries in the internal table. &lt;/P&gt;&lt;P&gt;  Apart from looping over the internal table is there any better way like modify all entries....and setting the field to a particular value or something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 07:47:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-clarifications/m-p/3751592#M902540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T07:47:46Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table Clarifications</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-clarifications/m-p/3751593#M902541</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;Its not possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 07:49:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-clarifications/m-p/3751593#M902541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T07:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table Clarifications</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-clarifications/m-p/3751594#M902542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Vinay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; You can use MODIFY statement with where condition to achieve that ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 07:50:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-clarifications/m-p/3751594#M902542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T07:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table Clarifications</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-clarifications/m-p/3751595#M902543</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;u can set the same value for a field, if it already has same values for all 1000 entries.&lt;/P&gt;&lt;P&gt;u can do that using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab_wa-field1 = 'abc'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY itab FROM itab_wa &lt;/P&gt;&lt;P&gt;       TRANSPORTING field1 WHERE field1 = 'xyz'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;otherwise it is not possible to change all the values of a particualr field. u have to loop through and change&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;madhumitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 07:55:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-clarifications/m-p/3751595#M902543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T07:55:27Z</dc:date>
    </item>
  </channel>
</rss>

