<?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 Using subscreen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-subscreen/m-p/1481380#M225151</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any body tell me how to use a tab strip in user command..?I have to design like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If one of the buttons in main screen is pressed, my tab strip should load into the subscreen area provided in main screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in adv,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Aug 2006 16:36:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-22T16:36:56Z</dc:date>
    <item>
      <title>Using subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-subscreen/m-p/1481380#M225151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any body tell me how to use a tab strip in user command..?I have to design like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If one of the buttons in main screen is pressed, my tab strip should load into the subscreen area provided in main screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in adv,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Aug 2006 16:36:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-subscreen/m-p/1481380#M225151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-22T16:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: Using subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-subscreen/m-p/1481381#M225152</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;If you have given tab name as 'TAB1' , then you can capture with sy-ucomm EQ 'TAB1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think you want to load tabstrip after button press .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then do like this first check invisible option of the tabstrip in screen painter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;if sy-ucomm eq 'BUTPRE' &amp;lt;- button 
LOOP AT SCREEN.
   IF screen-name = 'TAB1'.    
        screen-invisible = '0' .
        MODIFY SCREEN.
   ENDIF.
ENDLOOP.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Appana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Aug 2006 16:40:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-subscreen/m-p/1481381#M225152</guid>
      <dc:creator>Laxmana_Appana_</dc:creator>
      <dc:date>2006-08-22T16:40:57Z</dc:date>
    </item>
    <item>
      <title>Re: Using subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-subscreen/m-p/1481382#M225153</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;Check DEMO_DYNPRO_TABSTRIP_LOCAL &amp;amp; DEMO_DYNPRO_TABSTRIP_SERVER programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Aug 2006 16:43:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-subscreen/m-p/1481382#M225153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-22T16:43:51Z</dc:date>
    </item>
    <item>
      <title>Re: Using subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-subscreen/m-p/1481383#M225154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii abaper,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chk this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PROGRAM  Z_TABSTRIP_   .
CONTROLS MYTAB TYPE TABSTRIP.
CONTROLS TC1 TYPE TABLEVIEW USING SCREEN 0100.

DATA: BEGIN OF IT_MARA OCCURS 0,
      MATNR LIKE MARA-MATNR,
      ERNAM LIKE MARA-ERNAM,
      END OF IT_MARA.
DATA: OK_CODE TYPE SY-UCOMM,
      SAVE_OK TYPE SY-UCOMM.

START-OF-SELECTION.
  MYTAB-ACTIVETAB = 'PUSH2'.

  CALL SCREEN 1000.

MODULE USER_COMMAND_1000 INPUT.

  CLEAR: OK_CODE,
       SAVE_OK.
  OK_CODE = SY-UCOMM.
  SAVE_OK = OK_CODE.


  CASE SAVE_OK.
    WHEN 'BACK'.
      LEAVE TO SCREEN '0'.
    WHEN 'EXIT'.
      LEAVE TO SCREEN '0'.
    WHEN 'STOP'.
      LEAVE PROGRAM.
  ENDCASE.

  save_ok = ok_code.
  CLEAR ok_code.
  IF save_ok = 'OK'.
    MESSAGE i888(sabapdocu) WITH 'MYTAB-ACTIVETAB ='
                                  mytab-activetab.
  ELSE.
    mytab-activetab = save_ok.
*    CASE save_ok.
**      WHEN 'PUSH1'.
**        number = '0110'.
**      WHEN 'PUSH2'.
**        number = '0120'.
**      WHEN 'PUSH3'.
**        number = '0130'.
*    ENDCASE.
  ENDIF.


ENDMODULE.                 " USER_COMMAND_1000  INPUT

MODULE CANCEL INPUT.
  LEAVE PROGRAM.
ENDMODULE.                 " CANCEL  INPUT
MODULE STATUS_1000 OUTPUT.
  SET PF-STATUS 'SCREEN_100'.
ENDMODULE.                 " STATUS_1000  OUTPUT

MODULE STATUS_0100 OUTPUT.
*  SET PF-STATUS 'xxxxxxxx'.
*  SET TITLEBAR 'xxx'.
  REFRESH IT_MARA.
  SELECT MATNR
         ERNAM
         FROM MARA UP TO 5 ROWS
         INTO TABLE IT_MARA.

ENDMODULE.  &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;               " STATUS_0100  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Naresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Aug 2006 16:56:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-subscreen/m-p/1481383#M225154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-22T16:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: Using subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-subscreen/m-p/1481384#M225155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks guys !!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Aug 2006 20:10:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-subscreen/m-p/1481384#M225155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-22T20:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: Using subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-subscreen/m-p/1481385#M225156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please make sure that you award points for these helpful answers.  And make sure to mark you post as solved when solved completely.  Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Aug 2006 20:13:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-subscreen/m-p/1481385#M225156</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-22T20:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: Using subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-subscreen/m-p/1481386#M225157</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;how can i pass the values from one subscreen to another subscreen, i know if it is a normal screen by using loop and endloop but subscreen is not accepting the same..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any body throw the light...please..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 01:52:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-subscreen/m-p/1481386#M225157</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T01:52:53Z</dc:date>
    </item>
  </channel>
</rss>

