<?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 on  selection-screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-selection-screen/m-p/5744364#M1302124</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 can use a table control wizard. With that, you will have the standard behavior of the table control without coding it manually (which is erroneous). &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;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Benedict&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Jun 2009 02:18:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-16T02:18:45Z</dc:date>
    <item>
      <title>Table control on  selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-selection-screen/m-p/5744358#M1302118</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; If a check box is checked, I want to place a table control in a block on a normal selection-screen.&lt;/P&gt;&lt;P&gt;Please suggest me how to do this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 08:17:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-selection-screen/m-p/5744358#M1302118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-15T08:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: Table control on  selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-selection-screen/m-p/5744359#M1302119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;create a table control from the start of the code.. then just make it invisible... then create a logic that if the checkbox is ticked, then make the table control visible. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 08:19:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-selection-screen/m-p/5744359#M1302119</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-15T08:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: Table control on  selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-selection-screen/m-p/5744360#M1302120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Manasa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its not posible using a simple selection-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to create a MODULE POOL program for that.&lt;/P&gt;&lt;P&gt;In your Initial screen give your selection screen data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;below it create your table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in PBO add this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF CHECK_BOX = ' '.&lt;/P&gt;&lt;P&gt;LOOP AT screen.&lt;/P&gt;&lt;P&gt;IF Screen-name = 'TBCL'.&lt;/P&gt;&lt;P&gt;  screen-input = 0.&lt;/P&gt;&lt;P&gt;  screen-invisible = 1.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves your problem. Revert back in case the problem persits.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Suvendu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 09:07:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-selection-screen/m-p/5744360#M1302120</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-15T09:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: Table control on  selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-selection-screen/m-p/5744361#M1302121</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 have to create a different screen for holding the table control.. When the checkbox is ticked just call the screen in your program which will display your table control.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 09:10:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-selection-screen/m-p/5744361#M1302121</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-15T09:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: Table control on  selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-selection-screen/m-p/5744362#M1302122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello manasa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its not possible in normal selection screen to create Table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go with module pool program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Design the screen as your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Under  PBO write the bleow code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a module like MODULE_DEACTIVATE_TC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write the below code to invisible TC initially.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF CHECKBOX IS INITIAL.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'TC'.&lt;/P&gt;&lt;P&gt;SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;SCREEN_INVISIBLE = '1'.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&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;Create module inder PAI,to acivate TC&lt;/P&gt;&lt;P&gt;MODULE ACTIVE_TC.&lt;/P&gt;&lt;P&gt;inside module write bleow code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF CHECKBOX EQ 'X'.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'TC'.&lt;/P&gt;&lt;P&gt;SCREEN-INPUT = '1'.&lt;/P&gt;&lt;P&gt;SCREEN_INVISIBLE = '0'.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 09:15:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-selection-screen/m-p/5744362#M1302122</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-15T09:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: Table control on  selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-selection-screen/m-p/5744363#M1302123</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;Thanks for the response.&lt;/P&gt;&lt;P&gt;My Program is a Report Program. I  have many other parameters on the sel-scr. Additionally I want to put a table control so that when user enters data, I need to put the data into an internal table and use it for futher processing.&lt;/P&gt;&lt;P&gt;I've already done this using a tabbed selection-scr.&lt;/P&gt;&lt;P&gt;But I want it on the normal sel-scr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 09:22:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-selection-screen/m-p/5744363#M1302123</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-15T09:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: Table control on  selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-selection-screen/m-p/5744364#M1302124</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 can use a table control wizard. With that, you will have the standard behavior of the table control without coding it manually (which is erroneous). &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;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Benedict&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2009 02:18:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-selection-screen/m-p/5744364#M1302124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-16T02:18:45Z</dc:date>
    </item>
  </channel>
</rss>

