<?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: table control dialog programming in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dialog-programming/m-p/3046700#M721209</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i displayed the data on the table control on the screen . I need to modify a field value now . How do i retrieve the new value in the program . Can someone send me a sample code for that ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Oct 2007 21:04:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-30T21:04:31Z</dc:date>
    <item>
      <title>table control dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dialog-programming/m-p/3046698#M721207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am using a table control to display data in the form of a table in a dialog program . I have 4 fields on the table control . after displaying the data based on the input criterial , i should be able to modify a value on the screen and should be stored internally in a table . How do i do that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2007 17:58:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dialog-programming/m-p/3046698#M721207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-30T17:58:12Z</dc:date>
    </item>
    <item>
      <title>Re: table control dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dialog-programming/m-p/3046699#M721208</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;you need to have table control in edit mode in the screen (for desired columns which user can change). Once user modifies column values, and does any action (like press a button), you can validate user entries in CHAIN ENDCHAIN and also upload those values to your internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_45b/helpdata/en/d1/801bdf454211d189710000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_45b/helpdata/en/d1/801bdf454211d189710000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.ittoolbox.com/groups/technical-functional/sap-dev/dialog-programming-table-control-creation-1262570" target="test_blank"&gt;http://sap.ittoolbox.com/groups/technical-functional/sap-dev/dialog-programming-table-control-creation-1262570&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://hometown.aol.com/skarkada/sap/table_control/table_control.htm" target="test_blank"&gt;http://hometown.aol.com/skarkada/sap/table_control/table_control.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ashish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2007 18:02:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dialog-programming/m-p/3046699#M721208</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-30T18:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: table control dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dialog-programming/m-p/3046700#M721209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i displayed the data on the table control on the screen . I need to modify a field value now . How do i retrieve the new value in the program . Can someone send me a sample code for that ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2007 21:04:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dialog-programming/m-p/3046700#M721209</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-30T21:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: table control dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dialog-programming/m-p/3046701#M721210</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;As per the table control logic, in PAI you will be looping at the Table control and passing the data to internal table.&lt;/P&gt;&lt;P&gt;For eg : This is a piece of code from PAI &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP WITH CONTROL TCTRL_USERDATA.&lt;/P&gt;&lt;P&gt;		MODULE EXTRACT_USERDATA.&lt;/P&gt;&lt;P&gt;	ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here Table control data is moved back to internal table in module EXTRACT_USERDATA.&lt;/P&gt;&lt;P&gt;In this way you can get values entered on screen to your internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ashish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2007 21:13:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dialog-programming/m-p/3046701#M721210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-30T21:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: table control dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dialog-programming/m-p/3046702#M721211</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;you don't need to do any code... when you modify your values on table control they are automaticaly passed to your program variables after PAI...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dimas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2007 21:41:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dialog-programming/m-p/3046702#M721211</guid>
      <dc:creator>former_member656234</dc:creator>
      <dc:date>2007-10-30T21:41:50Z</dc:date>
    </item>
  </channel>
</rss>

