<?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: MANIPULATING INTERNAL TABLE... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-internal-table/m-p/4568949#M1078154</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_tab-id = 'PA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify i_tab from w_tab transporting id&lt;/P&gt;&lt;P&gt; where id  NE 'PA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Joyjit Ghosh on Sep 24, 2008 10:24 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Sep 2008 20:23:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-24T20:23:41Z</dc:date>
    <item>
      <title>MANIPULATING INTERNAL TABLE...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-internal-table/m-p/4568946#M1078151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a internal table I_TAB[] as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID--&lt;DEL&gt;VALUE&lt;/DEL&gt;---ATTRIBUTE&lt;/P&gt;&lt;P&gt;P1--&lt;DEL&gt;36&lt;/DEL&gt;--&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;D&lt;/P&gt;&lt;P&gt;P3--&lt;DEL&gt;34&lt;/DEL&gt;--&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;Y&lt;/P&gt;&lt;P&gt;P9--&lt;DEL&gt;32&lt;/DEL&gt;--&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;J&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to do a mass change in the ID value of this internal table such that, all the IDs get changed &lt;/P&gt;&lt;P&gt;to 'PA' as follows. I don't want to loop at the internal table, pas value to work area and then one by one from peformcne standpoint.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID--&lt;DEL&gt;VALUE&lt;/DEL&gt;---ATTRIBUTE&lt;/P&gt;&lt;P&gt;PA--&lt;DEL&gt;36&lt;/DEL&gt;--&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;D&lt;/P&gt;&lt;P&gt;PA--&lt;DEL&gt;34&lt;/DEL&gt;--&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;Y&lt;/P&gt;&lt;P&gt;PA--&lt;DEL&gt;32&lt;/DEL&gt;--&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;J&lt;/P&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;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2008 20:13:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-internal-table/m-p/4568946#M1078151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-24T20:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: MANIPULATING INTERNAL TABLE...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-internal-table/m-p/4568947#M1078152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to use work area as follows... otherwise i guess its not possible.. Do F1 on Modify and explore&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

DATA: WA_ITAB TYPE ITAB.

WA_ITAB-ID = 'PA'.
MODIFY ITAB FROM WA_ITAB TRANSPORTING ID.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;SKJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2008 20:20:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-internal-table/m-p/4568947#M1078152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-24T20:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: MANIPULATING INTERNAL TABLE...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-internal-table/m-p/4568948#M1078153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There no single statement which can do this as the data in each row will be different and will have to be changed individually. The best way I can think of is using field symbols&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at itab assigning &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;****Statement&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~ As found in forum&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2008 20:22:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-internal-table/m-p/4568948#M1078153</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2008-09-24T20:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: MANIPULATING INTERNAL TABLE...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-internal-table/m-p/4568949#M1078154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_tab-id = 'PA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify i_tab from w_tab transporting id&lt;/P&gt;&lt;P&gt; where id  NE 'PA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Joyjit Ghosh on Sep 24, 2008 10:24 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2008 20:23:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-internal-table/m-p/4568949#M1078154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-24T20:23:41Z</dc:date>
    </item>
    <item>
      <title>Re: MANIPULATING INTERNAL TABLE...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-internal-table/m-p/4568950#M1078155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Update itab SET ID = 'PA'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2008 21:10:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-internal-table/m-p/4568950#M1078155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-24T21:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: MANIPULATING INTERNAL TABLE...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-internal-table/m-p/4568951#M1078156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I will vote for &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT I_TAB[]  ASSIGNING &amp;lt;FS&amp;gt;.
&amp;lt;FS&amp;gt;-ID = 'PA'.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2008 21:35:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-internal-table/m-p/4568951#M1078156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-24T21:35:21Z</dc:date>
    </item>
  </channel>
</rss>

