<?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: tablecontrol in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tablecontrol/m-p/3578710#M861491</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Typically a table control will represent a set of columns from an internal table that you want to display on the screen.  In order to capture data entered on the screen, you will need to update your internal table from the values entered by the user - this is done in the loop in the flow logic at PAI... the values are passed back to the screen ready for display in the loop in the PBO screen flow... so if you set a break-point in these two places, you will be able to check that your internal table is indeed holding the correct values before and after the screen is displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbac1d35c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbac1d35c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 29 Mar 2008 05:52:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-29T05:52:04Z</dc:date>
    <item>
      <title>tablecontrol</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tablecontrol/m-p/3578709#M861490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello gurus ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           &lt;STRONG&gt;I am using a table control in that I have call some data from differt table and I want to insert some data manually in differt coloum , and some calculation in differt column ,Now data is caoming from differt table and I can enter the value also in visible column , but when I press enter , the entry data is disapper means what I have enterd . I mean to say hw to fix taht data in the screen after pressing enter, is there any way or example .Plz help .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am waiting for your valuable answer .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance .&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;Joy .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Mar 2008 04:01:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tablecontrol/m-p/3578709#M861490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-29T04:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: tablecontrol</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tablecontrol/m-p/3578710#M861491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Typically a table control will represent a set of columns from an internal table that you want to display on the screen.  In order to capture data entered on the screen, you will need to update your internal table from the values entered by the user - this is done in the loop in the flow logic at PAI... the values are passed back to the screen ready for display in the loop in the PBO screen flow... so if you set a break-point in these two places, you will be able to check that your internal table is indeed holding the correct values before and after the screen is displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbac1d35c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbac1d35c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Mar 2008 05:52:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tablecontrol/m-p/3578710#M861491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-29T05:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: tablecontrol</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tablecontrol/m-p/3578711#M861492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Since a table control will represent columns from an internal table that you want to display on the screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE tabctrl INPUT.&lt;/P&gt;&lt;P&gt;  CASE sy-ucomm.&lt;/P&gt;&lt;P&gt;    WHEN 'SAVE'.&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;        MODIFY wi_cust1 INDEX tb-current_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;          MODIFY zcust_master2 FROM TABLE wi_cust1.&lt;/P&gt;&lt;P&gt;          MESSAGE s005(zmsgbanks1).&lt;/P&gt;&lt;P&gt;        ELSE.&lt;/P&gt;&lt;P&gt;          MESSAGE e006(zmsgbanks1).&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here wi_cust1 is the internal table and zcust_master2 is the database table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps u,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arunsri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Apr 2008 04:54:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tablecontrol/m-p/3578711#M861492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-01T04:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: tablecontrol</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tablecontrol/m-p/3578712#M861493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the problem is your table control is not getting modified&lt;/P&gt;&lt;P&gt;after entering the values, &lt;/P&gt;&lt;P&gt;in PAI write the following code&lt;/P&gt;&lt;P&gt;  MODIFY itab  FROM &amp;lt;structure&amp;gt; INDEX tc-current_line.&lt;/P&gt;&lt;P&gt;  IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;    APPEND &amp;lt;structure&amp;gt;  TO itab.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Apr 2008 09:24:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tablecontrol/m-p/3578712#M861493</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-01T09:24:16Z</dc:date>
    </item>
  </channel>
</rss>

