<?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: multiple selection screen with pushbutton!! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screen-with-pushbutton/m-p/4663641#M1097168</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;i sugest following concept.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pushbutton4&lt;/P&gt;&lt;P&gt;pushbutton5&lt;/P&gt;&lt;P&gt;pushbutton6&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of screen 900.&lt;/P&gt;&lt;P&gt;pushbutton1&lt;/P&gt;&lt;P&gt;pushbutton2&lt;/P&gt;&lt;P&gt;pushbutton3&lt;/P&gt;&lt;P&gt;selection-screen end of screen 900.&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;if sy-ucomm = pushbutton4.&lt;/P&gt;&lt;P&gt; call selection-screen 900.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Oct 2008 04:57:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-14T04:57:33Z</dc:date>
    <item>
      <title>multiple selection screen with pushbutton!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screen-with-pushbutton/m-p/4663637#M1097164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need an example of how can I make a multiple selection screen with differents pushbutton!! Initially, I've 3 buttons, and when I click on one of them I need to show another 3 differents pushbutton, but I don't know how can I make this, I've tried making 2 screen but I only get dumps, does anybody know how can I make this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rebeca&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 11:12:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screen-with-pushbutton/m-p/4663637#M1097164</guid>
      <dc:creator>former_member384574</dc:creator>
      <dc:date>2008-10-13T11:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: multiple selection screen with pushbutton!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screen-with-pushbutton/m-p/4663638#M1097165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this Program &lt;STRONG&gt;demo_sel_screen_function_key&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have to use the event at selection-screen output event and modify the selection-screen  accordingly based on the button value. using loop at screen logic.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 11:19:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screen-with-pushbutton/m-p/4663638#M1097165</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T11:19:51Z</dc:date>
    </item>
    <item>
      <title>Re: multiple selection screen with pushbutton!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screen-with-pushbutton/m-p/4663639#M1097166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    Try this code, if u select second radio button, the send set not displays.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  zpbk_selection_screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : sscrfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;PARAMETERS : rd_p1 TYPE c RADIOBUTTON GROUP r1 USER-COMMAND abcd,&lt;/P&gt;&lt;P&gt;             rd_p2 TYPE c RADIOBUTTON GROUP r1  .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.&lt;/P&gt;&lt;P&gt;PARAMETERS : rd_r1 TYPE c RADIOBUTTON GROUP r2 MODIF ID ccc,&lt;/P&gt;&lt;P&gt;             rd_r2 TYPE c RADIOBUTTON GROUP r2 MODIF ID ccc,&lt;/P&gt;&lt;P&gt;             rd_r3 TYPE c RADIOBUTTON GROUP r2 MODIF ID ccc.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF rd_p2 = 'X' .&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      CASE screen-group1.&lt;/P&gt;&lt;P&gt;        WHEN 'CCC'.&lt;/P&gt;&lt;P&gt;          screen-input = 0.  "Enable&lt;/P&gt;&lt;P&gt;          screen-invisible = 1. "Disable&lt;/P&gt;&lt;P&gt;          MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDCASE.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Bala Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 11:25:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screen-with-pushbutton/m-p/4663639#M1097166</guid>
      <dc:creator>former_member585060</dc:creator>
      <dc:date>2008-10-13T11:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: multiple selection screen with pushbutton!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screen-with-pushbutton/m-p/4663640#M1097167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I see the pushbutton, but I see all the button, not the button of each group.. This is my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.

SELECTION-SCREEN SKIP.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN PUSHBUTTON  1(79) DTP USER-COMMAND DTP
VISIBLE LENGTH 20.
SELECTION-SCREEN PUSHBUTTON 25(79) EMP USER-COMMAND EMP
VISIBLE LENGTH 20.
SELECTION-SCREEN PUSHBUTTON 49(79) ABS USER-COMMAND ABS
VISIBLE LENGTH 20.

PARAMETERS: PROC_TYP TYPE I DEFAULT 1 NO-DISPLAY.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN SKIP.


* Informes de datos de tiempo.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN PUSHBUTTON 1(20) TEXT-FED USER-COMMAND FED MODIF ID DTP.

SELECTION-SCREEN PUSHBUTTON 23(20) TEXT-DCH USER-COMMAND DCH MODIF ID DTP.

SELECTION-SCREEN PUSHBUTTON 45(20) TEXT-ACH USER-COMMAND ACH MODIF ID DTP.

SELECTION-SCREEN END OF LINE.


SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN PUSHBUTTON 1(20) TEXT-LDP USER-COMMAND LDP MODIF ID EMP.

SELECTION-SCREEN PUSHBUTTON 23(20) TEXT-PDF USER-COMMAND PDF MODIF ID EMP.

SELECTION-SCREEN PUSHBUTTON 45(20) TEXT-LDT USER-COMMAND LDT MODIF ID EMP.

SELECTION-SCREEN END OF LINE.


SELECTION-SCREEN END OF BLOCK B1.
AT SELECTION-SCREEN.
  CASE SSCRFIELDS-UCOMM.
    WHEN 'DTP'. PROC_TYP = '1'.
    WHEN 'EMP'. PROC_TYP = '2'.
    WHEN 'ABS'. PROC_TYP = '3'.

  ENDCASE.


AT SELECTION-SCREEN OUTPUT.
  CASE PROC_TYP.


* Cuando el botón que ha seleccionado es "Datos de tiempo"

    WHEN 1.

      CALL FUNCTION 'ICON_CREATE'                      "yjs acc
        EXPORTING
          NAME                        = ICON_OKAY
          TEXT                        = TEXT-DTP
          INFO                        = TEXT-AUS
        IMPORTING
          RESULT                      = DTP.

      EMP = TEXT-EMP.
      ABS = TEXT-ABS.




       LOOP AT SCREEN.
        CASE SCREEN-GROUP1.
          WHEN 'DTP'.
            SCREEN-ACTIVE = 1.
            SCREEN-INVISIBLE = 0.
            MODIFY SCREEN.
        ENDCASE.
       ENDLOOP.


    WHEN 2.

      CALL FUNCTION 'ICON_CREATE'                       "yjs acc
        EXPORTING
          NAME                        = ICON_OKAY
          TEXT                        = TEXT-EMP
          INFO                        = TEXT-AUS
        IMPORTING
          RESULT                      = EMP.

      DTP = TEXT-DTP.
      ABS = TEXT-ABS.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;How can I do, for case number 1 only to show the button which has the modify ID 'DTP?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rebeca R on Oct 13, 2008 1:57 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rebeca R on Oct 13, 2008 1:58 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rebeca R on Oct 13, 2008 1:59 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 11:57:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screen-with-pushbutton/m-p/4663640#M1097167</guid>
      <dc:creator>former_member384574</dc:creator>
      <dc:date>2008-10-13T11:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: multiple selection screen with pushbutton!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screen-with-pushbutton/m-p/4663641#M1097168</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;i sugest following concept.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pushbutton4&lt;/P&gt;&lt;P&gt;pushbutton5&lt;/P&gt;&lt;P&gt;pushbutton6&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of screen 900.&lt;/P&gt;&lt;P&gt;pushbutton1&lt;/P&gt;&lt;P&gt;pushbutton2&lt;/P&gt;&lt;P&gt;pushbutton3&lt;/P&gt;&lt;P&gt;selection-screen end of screen 900.&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;if sy-ucomm = pushbutton4.&lt;/P&gt;&lt;P&gt; call selection-screen 900.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 04:57:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screen-with-pushbutton/m-p/4663641#M1097168</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-14T04:57:33Z</dc:date>
    </item>
  </channel>
</rss>

