<?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 Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/6792227#M1466121</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I solved it myself&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Apr 2010 06:20:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-04-20T06:20:16Z</dc:date>
    <item>
      <title>table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/6792222#M1466116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a table control. When i select the rows and scroll down, the rows i have selected are getting un-selected. But the selected rows are getting printed according to the requirement. Only thing is it is getting un-seelcted once we scroll up/down.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But while debugging i have found this values.&lt;/P&gt;&lt;P&gt;TCCUSTOM-LINE_SELECTOR = 'X'.&lt;/P&gt;&lt;P&gt;TCCUSTOM-LINE_SEL_MODE = '2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is working properly. I dont know what could be the reason for the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Karthi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message: please use a more descriptive subject line next time.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on Apr 19, 2010 2:12 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Apr 2010 09:55:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/6792222#M1466116</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-19T09:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/6792223#M1466117</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 might have written the logic for populating the table control data in PBO. That is why its happening I guess. Move the coding in to the PAI.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Apr 2010 10:14:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/6792223#M1466117</guid>
      <dc:creator>asik_shameem</dc:creator>
      <dc:date>2010-04-19T10:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/6792224#M1466118</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;My suggestion is.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U have to make the changes in Table control reflect in the Internal table...use this code in PAI...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PROCESS AFTER INPUT.
LOOP AT &amp;lt;internal table for table control&amp;gt;.
    MODULE reflect_data_internal_table.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in   &lt;STRONG&gt;MODULE reflect_data_internal_table&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;write this line..&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MODIFY &amp;lt;INTERNAL TABLE&amp;gt; FROM &amp;lt;WORKAREA OF INTERNAL TABLE&amp;gt; INDEX &amp;lt;TABLE CONTROL&amp;gt;-current_line.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if u run the pgm the selection u made in table control will reflect in internal table...and thus will not disappear...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: SENTINEL on Apr 19, 2010 1:15 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Apr 2010 10:30:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/6792224#M1466118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-19T10:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/6792225#M1466119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karthi,&lt;/P&gt;&lt;P&gt;Check all your PBO modules, it seems like that you've pre-populated your table control and modify your table control with table_conbrol-mark.&lt;/P&gt;&lt;P&gt;You might check all your PAI modules as well.&lt;/P&gt;&lt;P&gt;Do a debug in all your modules and create a Watch-Point in your table_control-mark.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls let me know if I can provide more information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Jun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Apr 2010 10:41:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/6792225#M1466119</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-19T10:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/6792226#M1466120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;hi,,,,&lt;/P&gt;&lt;P&gt;go through the below demoprograms&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DEMO_DYNPRO_TABLE_CONTROL_1
DEMO_DYNPRO_TABLE_CONTROL_2
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; and c the example in saptechnical go to Tutorials then ABAP and TableControlDemo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Bhavana Amar on Apr 19, 2010 2:26 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Bhavana Amar on Apr 19, 2010 2:27 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Apr 2010 12:24:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/6792226#M1466120</guid>
      <dc:creator>former_member233090</dc:creator>
      <dc:date>2010-04-19T12:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/6792227#M1466121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I solved it myself&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Apr 2010 06:20:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/6792227#M1466121</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-20T06:20:16Z</dc:date>
    </item>
  </channel>
</rss>

