<?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 Tab option in Module pool. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-option-in-module-pool/m-p/3287133#M786390</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, &lt;/P&gt;&lt;P&gt;I want to incorporate tab functionality for my module pool programming. Can anyone tell me if there is any way I can achieve this. &lt;/P&gt;&lt;P&gt;-- Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Jan 2008 11:27:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-11T11:27:48Z</dc:date>
    <item>
      <title>Tab option in Module pool.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-option-in-module-pool/m-p/3287133#M786390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, &lt;/P&gt;&lt;P&gt;I want to incorporate tab functionality for my module pool programming. Can anyone tell me if there is any way I can achieve this. &lt;/P&gt;&lt;P&gt;-- Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2008 11:27:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-option-in-module-pool/m-p/3287133#M786390</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-11T11:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: Tab option in Module pool.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-option-in-module-pool/m-p/3287134#M786391</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 the &lt;STRONG&gt;TABSTRIP&lt;/STRONG&gt; control for your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A tabstrip control is a screen element that consists of multiple tabstrip pages. Every tabstrip page contains a single-line tab title which is linked with a function code which makes it possible to access the tabstrip page with a double-click. Below the tab title, a tabstrip page consists of a subscreen area. A subscreen area must be assigned to every tab title. To do this, you have two options: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scrolling in the SAP GUI &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A tab title is assigned to each subscreen area and the function codes of the individual tab titles are defined with the function type "P". If the user selects a tab title, the event PAI is not raised. The corresponding subscreens are incorporated once into every individual subscreen area using the statement CALL SUBSCREEN of the flow logic. If the user selects a tab title, then the SAP GUI scrolls to the corresponding tabstrip page and displays its content. &lt;/P&gt;&lt;P&gt;Scrolling in the ABAP program &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To each tab title, the same subscreen area is assigned and the function codes of the individual tab titles are defined without typing. If the user selects a tab title, then the event PAI is triggered. The corresponding subscreen is dynamically incorporated into the subscreen area CALL SUBSCREEN when scrolling using the statement CALL SUBSCREEN of the flow logic. In the ABAP program, you must activate the corresponding tabstrip title CONTROLS and the correct subscreen dynpro must be scheduled for the subscreen area. &lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;When you scroll in the SAP GUI and select a tab title, then no input checks are carried out and no data is transported to the ABAP program. The entries are not checked and the data of all subscreens is not transported until a user action takes place that triggers the event PAI. When scrolling in the ABAP program, the entries are checked at every selection of a tab title and the data of the current tabstrip page is transported to the ABAP program of the subscreen dynpro. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Renjith Michael.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2008 11:37:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-option-in-module-pool/m-p/3287134#M786391</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-11T11:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: Tab option in Module pool.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-option-in-module-pool/m-p/3287135#M786392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi jaspreet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to read help..on&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/a9/8bec2390a811d1b4640000e8a52bed/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/a9/8bec2390a811d1b4640000e8a52bed/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can have my program code  for check it.&lt;/P&gt;&lt;P&gt;&lt;U&gt;coding in main screen of program.&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MODULE status_0101.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MODULE tabstrp_active_tabstr_set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Module set_attributes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL SUBSCREEN subscreen1 INCLUDING g_tabstrp-prog g_tabstrp-subscreen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  module exit_trans at exit-command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL SUBSCREEN subscreen1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MODULE tabstrp_active_tabstr_get.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MODULE user_command_0101.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;coding in module pool program.&lt;/U&gt;&lt;/P&gt;&lt;P&gt;*********&lt;STRONG&gt;constant declearation&lt;/STRONG&gt;****************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANTS: BEGIN OF C_TABSTRP,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             TAB1 LIKE SY-UCOMM VALUE 'MAIN',&lt;/P&gt;&lt;P&gt;             TAB2 LIKE SY-UCOMM VALUE 'DETL',&lt;/P&gt;&lt;P&gt;             TAB3 LIKE SY-UCOMM VALUE 'HEAD',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           END OF C_TABSTRP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANTS : C_X TYPE C VALUE 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*********&lt;STRONG&gt;control declearation&lt;/STRONG&gt;****************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONTROLS : TABSTRP TYPE TABSTRIP,&lt;/P&gt;&lt;P&gt;            TABLE_CONTROL TYPE TABLEVIEW USING SCREEN 0103.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="9" type="ul"&gt;&lt;P&gt;data declearation*****************&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA :  BEGIN OF G_TABSTRP,&lt;/P&gt;&lt;P&gt;             SUBSCREEN   LIKE SY-DYNNR,&lt;/P&gt;&lt;P&gt;             PROG        LIKE SY-REPID VALUE 'Z11SY_TABSTRIP_PO_PRINT',&lt;/P&gt;&lt;P&gt;             PRESSED_TAB LIKE SY-UCOMM VALUE C_TABSTRP-TAB1,&lt;/P&gt;&lt;P&gt;        END OF G_TABSTRP.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  tabstrp_active_tabstr_set  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE TABSTRP_ACTIVE_TABSTR_SET OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  TABSTRP-ACTIVETAB = G_TABSTRP-PRESSED_TAB.&lt;/P&gt;&lt;P&gt;  CASE G_TABSTRP-PRESSED_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN C_TABSTRP-TAB1.&lt;/P&gt;&lt;P&gt;      G_TABSTRP-SUBSCREEN = '0102'.&lt;/P&gt;&lt;P&gt;      CLEAR Z11SY_PO_HEADER.&lt;/P&gt;&lt;P&gt;    WHEN C_TABSTRP-TAB2.&lt;/P&gt;&lt;P&gt;      G_TABSTRP-SUBSCREEN = '0103'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN C_TABSTRP-TAB3.&lt;/P&gt;&lt;P&gt;      G_TABSTRP-SUBSCREEN = '0104'.&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " tabstrp_active_tabstr_set  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  tabstrp_active_tabstr_get  INPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE TABSTRP_ACTIVE_TABSTR_GET INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE OK_CODE_0101.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN C_TABSTRP-TAB1.&lt;/P&gt;&lt;P&gt;      G_TABSTRP-PRESSED_TAB = C_TABSTRP-TAB1.&lt;/P&gt;&lt;P&gt;    WHEN C_TABSTRP-TAB2.&lt;/P&gt;&lt;P&gt;      G_TABSTRP-PRESSED_TAB = C_TABSTRP-TAB2.&lt;/P&gt;&lt;P&gt;    WHEN C_TABSTRP-TAB3.&lt;/P&gt;&lt;P&gt;      G_TABSTRP-PRESSED_TAB = C_TABSTRP-TAB3.&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;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " tabstrp_active_tabstr_get  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward is useful,&lt;/P&gt;&lt;P&gt;thanks in advance..:-)&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2008 11:41:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-option-in-module-pool/m-p/3287135#M786392</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-11T11:41:06Z</dc:date>
    </item>
    <item>
      <title>Re: Tab option in Module pool.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-option-in-module-pool/m-p/3287136#M786393</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;&lt;/P&gt;&lt;P&gt;Tabstrip with wizard is best option to create tab strip.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first go to layout of any screen.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;take element &lt;STRONG&gt;TABSTRIP with WIZARD&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then follow the steps....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1&amp;gt; continue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2&amp;gt; give name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3&amp;gt; than give tab text ( give different text as per need of tabs)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4&amp;gt; it will create subscreens automatically for that tabs... , continue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5&amp;gt;it will show list of includes..., continue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6&amp;gt; complete&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here in subscreen u can create all the elements as normal screen.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if usefull...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2008 11:45:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-option-in-module-pool/m-p/3287136#M786393</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-11T11:45:41Z</dc:date>
    </item>
    <item>
      <title>Re: Tab option in Module pool.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-option-in-module-pool/m-p/3287137#M786394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Set cursor command for fields like&lt;/P&gt;&lt;P&gt;constatnts: tab_button(&amp;lt;Length os screen field&amp;gt;) type c value '&amp;lt;Screen field&amp;gt;'.&lt;/P&gt;&lt;P&gt;set cursor field tab_button.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2008 16:17:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-option-in-module-pool/m-p/3287137#M786394</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-11T16:17:14Z</dc:date>
    </item>
  </channel>
</rss>

