<?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 Table control on Tabbed selection-screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-tabbed-selection-screen/m-p/5548321#M1266731</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;My Requirement is: I have a tabbed selection-screen with 3 tabs.&lt;/P&gt;&lt;P&gt;On one of the tabs I have to include a Table control.&lt;/P&gt;&lt;P&gt;Currently I'm displaying Table control as Pop-up . But I want that on the screen itself.&lt;/P&gt;&lt;P&gt;Please suggest me how to do this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 May 2009 11:42:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-01T11:42:40Z</dc:date>
    <item>
      <title>Table control on Tabbed selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-tabbed-selection-screen/m-p/5548321#M1266731</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;My Requirement is: I have a tabbed selection-screen with 3 tabs.&lt;/P&gt;&lt;P&gt;On one of the tabs I have to include a Table control.&lt;/P&gt;&lt;P&gt;Currently I'm displaying Table control as Pop-up . But I want that on the screen itself.&lt;/P&gt;&lt;P&gt;Please suggest me how to do this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 May 2009 11:42:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-tabbed-selection-screen/m-p/5548321#M1266731</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-01T11:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: Table control on Tabbed selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-tabbed-selection-screen/m-p/5548322#M1266732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Once i have done this. but only table control was there on the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;design a screen and place one table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;y will declare one default subscreen in the selection screen tab declaration,&lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At selection-screen.&lt;/P&gt;&lt;P&gt;change the value of the deflaut screen to ur designed screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;below is one example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;controls: tab type tableview using screen 201.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF TABBED BLOCK object FOR 50 LINES.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN TAB (60) tab_cls USER-COMMAND ut_cls&lt;/P&gt;&lt;P&gt;                      DEFAULT SCREEN 101.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN TAB (60) tab_rcp USER-COMMAND ut_rcp&lt;/P&gt;&lt;P&gt;                      DEFAULT SCREEN 200.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 0101 AS SUBSCREEN NESTING LEVEL 2.&lt;/P&gt;&lt;P&gt;parameters: P_lifnr type lfa1-lifnr.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 0101.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 0200 AS SUBSCREEN NESTING LEVEL 2.&lt;/P&gt;&lt;P&gt;parameters: p_ebele type ekko-ebeln.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 0200.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  CASE sy-dynnr.&lt;/P&gt;&lt;P&gt;    WHEN 1000.&lt;/P&gt;&lt;P&gt;      CASE sy-ucomm.&lt;/P&gt;&lt;P&gt;        WHEN 'PUSH1'.&lt;/P&gt;&lt;P&gt;          object-dynnr = 100.&lt;/P&gt;&lt;P&gt;        WHEN 'UT_RCP'.&lt;/P&gt;&lt;P&gt;          object-dynnr = 201.&lt;/P&gt;&lt;P&gt;        WHEN OTHERS.&lt;/P&gt;&lt;P&gt;        ...&lt;/P&gt;&lt;P&gt;      ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here the defualt screen is 200 but for table control purpose i changed it to 201 which has the table control in it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 May 2009 12:40:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-tabbed-selection-screen/m-p/5548322#M1266732</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-01T12:40:12Z</dc:date>
    </item>
  </channel>
</rss>

