<?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: update internal table with selection screen field. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-internal-table-with-selection-screen-field/m-p/3329314#M797507</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check this program..&lt;/P&gt;&lt;P&gt;PARAMETERS:TEXT(40) TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:BEGIN OF ITAB OCCURS 0,&lt;/P&gt;&lt;P&gt;     TEXT(40),&lt;/P&gt;&lt;P&gt;     END OF ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ITAB-TEXT = TEXT.&lt;/P&gt;&lt;P&gt;  APPEND ITAB.&lt;/P&gt;&lt;P&gt;  LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;    WRITE:ITAB-TEXT.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Jan 2008 09:11:20 GMT</pubDate>
    <dc:creator>former_member188829</dc:creator>
    <dc:date>2008-01-23T09:11:20Z</dc:date>
    <item>
      <title>update internal table with selection screen field.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-internal-table-with-selection-screen-field/m-p/3329311#M797504</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;suppose i take a text field as input from the user at selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;description for the text field : parameter, type char,length 40.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i have to update the value entered in this field into the internal table field TXT type char length 40.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to do this.....???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you &lt;/P&gt;&lt;P&gt;@Mit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 09:04:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-internal-table-with-selection-screen-field/m-p/3329311#M797504</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T09:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: update internal table with selection screen field.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-internal-table-with-selection-screen-field/m-p/3329312#M797505</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;APPEND &amp;lt;PARAMETER&amp;gt; TO ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 09:06:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-internal-table-with-selection-screen-field/m-p/3329312#M797505</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T09:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: update internal table with selection screen field.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-internal-table-with-selection-screen-field/m-p/3329313#M797506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use MODIFY command to modify the content u want in your internal table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 09:07:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-internal-table-with-selection-screen-field/m-p/3329313#M797506</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T09:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: update internal table with selection screen field.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-internal-table-with-selection-screen-field/m-p/3329314#M797507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check this program..&lt;/P&gt;&lt;P&gt;PARAMETERS:TEXT(40) TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:BEGIN OF ITAB OCCURS 0,&lt;/P&gt;&lt;P&gt;     TEXT(40),&lt;/P&gt;&lt;P&gt;     END OF ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ITAB-TEXT = TEXT.&lt;/P&gt;&lt;P&gt;  APPEND ITAB.&lt;/P&gt;&lt;P&gt;  LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;    WRITE:ITAB-TEXT.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 09:11:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-internal-table-with-selection-screen-field/m-p/3329314#M797507</guid>
      <dc:creator>former_member188829</dc:creator>
      <dc:date>2008-01-23T09:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: update internal table with selection screen field.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-internal-table-with-selection-screen-field/m-p/3329315#M797508</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;parameters : p_text(40) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab-text = p_text.&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 09:13:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-internal-table-with-selection-screen-field/m-p/3329315#M797508</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2008-01-23T09:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: update internal table with selection screen field.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-internal-table-with-selection-screen-field/m-p/3329316#M797509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You All.......... &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 09:21:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-internal-table-with-selection-screen-field/m-p/3329316#M797509</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T09:21:27Z</dc:date>
    </item>
  </channel>
</rss>

