<?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 in dialog programming in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-dialog-programming/m-p/8023851#M1609129</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;How have you created the table control? through the wizard  or manually?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Aug 2011 05:28:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-08-03T05:28:50Z</dc:date>
    <item>
      <title>table control in dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-dialog-programming/m-p/8023848#M1609126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i had taken two table control in third tab of screen 103.. the problem are &lt;/P&gt;&lt;P&gt;1.whenever i press enter all the data in table control disappear or lost....and&lt;/P&gt;&lt;P&gt; 2. whenever i want to add new record the  no scorll bar in coming or i am unable to enter new record&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2011 13:27:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-dialog-programming/m-p/8023848#M1609126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-01T13:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: table control in dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-dialog-programming/m-p/8023849#M1609127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to fix the scroll bar by using setting the property. Table control has a property called FIXED_COLS. FIXED_COLS takes the column number.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2011 14:00:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-dialog-programming/m-p/8023849#M1609127</guid>
      <dc:creator>Shahid</dc:creator>
      <dc:date>2011-08-01T14:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: table control in dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-dialog-programming/m-p/8023850#M1609128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you set the Table Control's LINES property accordingly?&lt;/P&gt;&lt;P&gt;You always have to do this in the PBO, so the Table Control knows how many lines are filled with data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 G_D_TC-LINES = LINES ( G_T_INTERNAL_TABLE ).
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Aug 2011 09:06:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-dialog-programming/m-p/8023850#M1609128</guid>
      <dc:creator>former_member209703</dc:creator>
      <dc:date>2011-08-02T09:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: table control in dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-dialog-programming/m-p/8023851#M1609129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;How have you created the table control? through the wizard  or manually?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Aug 2011 05:28:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-dialog-programming/m-p/8023851#M1609129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-03T05:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: table control in dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-dialog-programming/m-p/8023852#M1609130</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;1) when you press enter button just debug the code using /h i think some where your written the code for clearing the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)&lt;/P&gt;&lt;P&gt;   use Jose Maria Otero said. your using the two table control so you have to find two internal table lines like &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 G_D_TC1-LINES = LINES ( G_T_INTERNAL_TABLE1 )."first table control 
 G_D_TC2-LINES = LINES ( G_T_INTERNAL_TABLE2 )."second table control
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;write the code in the PBO event. Here G_D_TC1 is 1st table control name G_D_TC2 is 2nd table control name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dhina..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Aug 2011 09:48:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-dialog-programming/m-p/8023852#M1609130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-03T09:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: table control in dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-dialog-programming/m-p/8023853#M1609131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;table control create by wizard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Aug 2011 05:06:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-dialog-programming/m-p/8023853#M1609131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-04T05:06:02Z</dc:date>
    </item>
    <item>
      <title>Re: table control in dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-dialog-programming/m-p/8023854#M1609132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check in your  PAI if there is a line similar to &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;modify itab from wa.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;it should be in a module In the loop ..... endloop in the pai.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is there. Pls check if u r refreshing teh itab in PBO.. or if u r selecting records from somewhere in the PBO which will overwrite the entered values?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Aug 2011 06:17:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-dialog-programming/m-p/8023854#M1609132</guid>
      <dc:creator>lijisusan_mathews</dc:creator>
      <dc:date>2011-08-04T06:17:55Z</dc:date>
    </item>
  </channel>
</rss>

