<?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: tabstrip in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/2158508#M456303</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have you created only subscreen acre ot attached a subscreen with it??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you have already attached a subscreen. then go to the layout of subscreen (some screen no) and add element there.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Apr 2007 05:42:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-25T05:42:34Z</dc:date>
    <item>
      <title>tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/2158507#M456302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i created a tabstrip screen, on tab1 i want to hav  a screen which has sm elements like text field etc. for that i created a subscreen. how will i get the elements on this subscreen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 05:36:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/2158507#M456302</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T05:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/2158508#M456303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have you created only subscreen acre ot attached a subscreen with it??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you have already attached a subscreen. then go to the layout of subscreen (some screen no) and add element there.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 05:42:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/2158508#M456303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T05:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/2158509#M456304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To create a subscreen there are three stapes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. define subscreen area on the screen&lt;/P&gt;&lt;P&gt;2. define suitable subscreen screen&lt;/P&gt;&lt;P&gt;3. include subscreen ascreen to subscreen area&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT demo_dynpro_subscreens.

DATA: ok_code TYPE sy-ucomm,
      save_ok TYPE sy-ucomm.

DATA: number1(4) TYPE n VALUE '0110',
      number2(4) TYPE n VALUE '0130',
      field(10) TYPE c, field1(10) TYPE c, field2(10) TYPE c.

CALL SCREEN 100.

MODULE status_100 OUTPUT.
  SET PF-STATUS 'SCREEN_100'.
ENDMODULE.

MODULE fill_0110 OUTPUT.
  field = 'Eingabe 1'(001).
ENDMODULE.

MODULE fill_0120 OUTPUT.
  field = field1.
ENDMODULE.

MODULE fill_0130 OUTPUT.
  field = 'Eingabe 2'(002).
ENDMODULE.

MODULE fill_0140 OUTPUT.
  field = field2.
ENDMODULE.

MODULE cancel INPUT.
  LEAVE PROGRAM.
ENDMODULE.

MODULE save_ok INPUT.
  save_ok = ok_code.
  CLEAR ok_code.
ENDMODULE.

MODULE user_command_0110 INPUT.
  IF save_ok = 'OK1'.
    number1 = '0120'.
    field1 = field.
    CLEAR field.
  ENDIF.
ENDMODULE.

MODULE user_command_0130 INPUT.
  IF save_ok = 'OK2'.
    number2 = '0140'.
    field2 = field.
    CLEAR field.
  ENDIF.
ENDMODULE.

MODULE user_command_100 INPUT.
  CASE save_ok.
    WHEN 'SUB1'.
      number1 = '0110'.
    WHEN 'SUB2'.
      number1 = '0120'.
      CLEAR field1.
    WHEN 'SUB3'.
      number2 = '0130'.
    WHEN 'SUB4'.
      number2 = '0140'.
      CLEAR field2.
  ENDCASE.
ENDMODULE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;screen 100:&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;process before output.
  module status_100.
  call subscreen: area1 including sy-repid number1,
                  area2 including sy-repid number2.

process after input.
  module cancel at exit-command.
  module save_ok.
  call subscreen: area1,
                  area2.
  module user_command_100.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here we use four subscree : 0110,0120,0130,0140.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so if u wanna add element to subscreen then open perticular subscreen layout (0110 or 0120 or 0130 or 0140) and add element there.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 05:48:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/2158509#M456304</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T05:48:58Z</dc:date>
    </item>
  </channel>
</rss>

