<?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 update table control dynamically in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-table-control-dynamically/m-p/6938771#M1486989</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a table control of my internal table "i_main" using Screen Painter's table control wizard. I have made all fields editable via double clicking the field, clicking Program, then Input = Possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My i_main table and table control contains the following fields:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hunit TYPE vekp-vpobjkey.&lt;/P&gt;&lt;P&gt;printno TYPE i.&lt;/P&gt;&lt;P&gt;groupno TYPE i.&lt;/P&gt;&lt;P&gt;batch TYPE mseg-charg.&lt;/P&gt;&lt;P&gt;qtyTYPE mseg-menge.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After my program has populated i_main table control, I now want to manually override the contained values in i_main and my table control z_init. When I type in a new value for my quantity column, for example I change 22 to 5. It goes back to 22, and nothing happens. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any advice on what should I do to update fields of my table control, as well as i_main?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 May 2010 10:27:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-03T10:27:19Z</dc:date>
    <item>
      <title>update table control dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-table-control-dynamically/m-p/6938771#M1486989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a table control of my internal table "i_main" using Screen Painter's table control wizard. I have made all fields editable via double clicking the field, clicking Program, then Input = Possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My i_main table and table control contains the following fields:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hunit TYPE vekp-vpobjkey.&lt;/P&gt;&lt;P&gt;printno TYPE i.&lt;/P&gt;&lt;P&gt;groupno TYPE i.&lt;/P&gt;&lt;P&gt;batch TYPE mseg-charg.&lt;/P&gt;&lt;P&gt;qtyTYPE mseg-menge.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After my program has populated i_main table control, I now want to manually override the contained values in i_main and my table control z_init. When I type in a new value for my quantity column, for example I change 22 to 5. It goes back to 22, and nothing happens. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any advice on what should I do to update fields of my table control, as well as i_main?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 May 2010 10:27:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-table-control-dynamically/m-p/6938771#M1486989</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-03T10:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: update table control dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-table-control-dynamically/m-p/6938772#M1486990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in pai event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at iternaltable.&lt;/P&gt;&lt;P&gt;module move_to_table ON CHAIN-REQUEST.&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;module move_TO_TABLE.&lt;/P&gt;&lt;P&gt;MODIFY IT FROM WA_ZTBCTRL INDEX ZTBCTRL-CURRENT_LINE.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 May 2010 10:34:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-table-control-dynamically/m-p/6938772#M1486990</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-05-03T10:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: update table control dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-table-control-dynamically/m-p/6938773#M1486991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much Keshav! I can now update my internal table through table control. Hope this information helps others too. Thanks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Mozart&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 May 2010 01:28:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-table-control-dynamically/m-p/6938773#M1486991</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-04T01:28:59Z</dc:date>
    </item>
  </channel>
</rss>

