<?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: Problem with table control data in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control-data/m-p/2036462#M418341</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Venu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  In table control when you click on F4 help it will go first PAI  and againg go to PBO and fill the help data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After that when you click on other object again this control goes to PAI and PBO.&lt;/P&gt;&lt;P&gt;But initially in your PBO there is no code to get the help data .PBO code will get execute and the help data get refreshed . and first screen will get displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So to control this put a conditon that&lt;/P&gt;&lt;P&gt;when press help data  don't process this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Mar 2007 10:18:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-22T10:18:09Z</dc:date>
    <item>
      <title>Problem with table control data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control-data/m-p/2036461#M418340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         i am working on module pool program ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          here in my table control one field is kunnr having f4 help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          once the customer get the data into table control using f4 help .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          next time when ever the user click on any object on screen data disappearing from table control how to handel this data .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        can u please help me onthis issue .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Venu Madhavan Boppudi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 10:03:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control-data/m-p/2036461#M418340</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T10:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with table control data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control-data/m-p/2036462#M418341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Venu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  In table control when you click on F4 help it will go first PAI  and againg go to PBO and fill the help data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After that when you click on other object again this control goes to PAI and PBO.&lt;/P&gt;&lt;P&gt;But initially in your PBO there is no code to get the help data .PBO code will get execute and the help data get refreshed . and first screen will get displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So to control this put a conditon that&lt;/P&gt;&lt;P&gt;when press help data  don't process this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 10:18:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control-data/m-p/2036462#M418341</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T10:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with table control data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control-data/m-p/2036463#M418342</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;           i have resolved the problem my self, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           when ever we are working on table control system will treated, table control also one sub-screen , below code must be written in PBO module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : cols LIKE LINE OF tc2-cols.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT tc2-cols (table control name) INTO cols WHERE index EQ 1.&lt;/P&gt;&lt;P&gt;      IF cols-screen-input = '0'.&lt;/P&gt;&lt;P&gt;        cols-screen-input = '1'.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      MODIFY tc2-cols FROM cols INDEX sy-tabix.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2007 11:32:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control-data/m-p/2036463#M418342</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-27T11:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with table control data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control-data/m-p/2036464#M418343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;help a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2007 11:33:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control-data/m-p/2036464#M418343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-27T11:33:48Z</dc:date>
    </item>
  </channel>
</rss>

