<?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: Internal table Updation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-updation/m-p/4958311#M1155960</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajan, &lt;/P&gt;&lt;P&gt;     As per my understanding of your question: &lt;/P&gt;&lt;P&gt;It would be simple enough if you move that constant value into the corresponding field of internal table and say.. modify transporting that wa into it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex: &lt;/P&gt;&lt;P&gt;  wa_currency = SGD&lt;/P&gt;&lt;P&gt;modify it transporting wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;would serve the purpose i think!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;BabuSrinath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 Dec 2008 02:32:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-12T02:32:43Z</dc:date>
    <item>
      <title>Internal table Updation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-updation/m-p/4958310#M1155959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;      I had a requirement in which i need to update internal table. I had one field in the internal table which will be blank, i need to update that field with some constant values.How can i do it? &lt;/P&gt;&lt;P&gt;To be a bit clearer for eg. i had one internal table with currency code field as empty. I need to pass the value 'SGD' to that field in the internal table.Please Help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Arun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Dec 2008 02:24:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-updation/m-p/4958310#M1155959</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-12T02:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table Updation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-updation/m-p/4958311#M1155960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajan, &lt;/P&gt;&lt;P&gt;     As per my understanding of your question: &lt;/P&gt;&lt;P&gt;It would be simple enough if you move that constant value into the corresponding field of internal table and say.. modify transporting that wa into it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex: &lt;/P&gt;&lt;P&gt;  wa_currency = SGD&lt;/P&gt;&lt;P&gt;modify it transporting wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;would serve the purpose i think!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;BabuSrinath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Dec 2008 02:32:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-updation/m-p/4958311#M1155960</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-12T02:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table Updation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-updation/m-p/4958312#M1155961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;DATA itab TYPE STANDARD TABLE OF tcurc WITH HEADER LINE.
data:wa LIKE LINE OF itab.
START-OF-SELECTION.


* Get data
  SELECT * UP TO 100 ROWS
  FROM
  tcurc
  INTO TABLE itab.
    wa-isocd = 'CONSTANT'."Constant value
modify itab FROM wa TRANSPORTING isocd WHERE isocd = ' '."this will modify all entries of Itab where ISOCD is blank.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Dec 2008 02:37:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-updation/m-p/4958312#M1155961</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-12T02:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table Updation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-updation/m-p/4958313#M1155962</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;Try it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Loop at itab into wa.
   wa-currency = 'SGD'.
   modify itab from wa transporting currency.
endloop.&lt;/CODE&gt;&lt;/PRE&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;Chris Gu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Dec 2008 03:10:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-updation/m-p/4958313#M1155962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-12T03:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table Updation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-updation/m-p/4958314#M1155963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks all, ur answer solved my problem...........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Dec 2008 03:24:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-updation/m-p/4958314#M1155963</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-12T03:24:54Z</dc:date>
    </item>
  </channel>
</rss>

