<?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: push button in dynpro in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492045#M839800</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In PAI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
    module user_command_ok_code.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
module user_command_ok_code input.
   ok_code = sy-ucomm.
  if ok_code eq XXXX'
    " do somethng
  endif.,

endmodule.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Mar 2008 15:29:30 GMT</pubDate>
    <dc:creator>former_member194669</dc:creator>
    <dc:date>2008-03-06T15:29:30Z</dc:date>
    <item>
      <title>push button in dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492039#M839794</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 have a dynpro where i have added 2 push-buttons. now i want to use the 'value' of the push-button in my apab ? but my program does not know the 2 push-buttons ! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i implement it into abap-source ?!?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reg, Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 14:52:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492039#M839794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-06T14:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: push button in dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492040#M839795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi in this report u can find this push buttons and its working,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Report  ZPR_02
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*

REPORT  ZPR_02.

TYPE-POOLS: SLIS.

*------------------------------------------------------------------------*
*  Tables Declaration.
*------------------------------------------------------------------------*
TABLES: MARA.

*------------------------------------------------------------------------*
*Internal tables and data declaration.
*------------------------------------------------------------------------*
DATA: BEGIN OF IT_MARA OCCURS 0,
        MATNR LIKE MARA-MATNR,
        MTART LIKE MARA-MTART,
        MBRSH LIKE MARA-MBRSH,
      END OF IT_MARA,

      BEGIN OF IT_MARC OCCURS 0,
        MATNR LIKE MARC-MATNR,
        WERKS LIKE MARC-WERKS,
        EKGRP LIKE MARC-EKGRP,
      END OF IT_MARC,

      BEGIN OF IT_MARD OCCURS 0,
        MATNR LIKE MARD-MATNR,
        WERKS LIKE MARD-WERKS,
        LGORT LIKE MARD-LGORT,
        LABST LIKE MARD-LABST,
      END OF IT_MARD.

DATA: WA_FIELD_CAT TYPE SLIS_FIELDCAT_ALV,
      IT_FIELD_CAT1 TYPE SLIS_T_FIELDCAT_ALV,
      IT_FIELD_CAT2 TYPE SLIS_T_FIELDCAT_ALV,
      IT_FIELD_CAT3 TYPE SLIS_T_FIELDCAT_ALV,
      WA_KEYINFO TYPE SLIS_KEYINFO_ALV,
      IT_LAYOUT TYPE SLIS_LAYOUT_ALV,
      IT_EVENTS1    TYPE SLIS_T_EVENT WITH HEADER LINE,
      IT_EVENTS2    TYPE SLIS_T_EVENT WITH HEADER LINE,
      IT_EVENTS3    TYPE SLIS_T_EVENT WITH HEADER LINE.
*------------------------------------------------------------------------*
*Selection Screen.
*------------------------------------------------------------------------*
SELECT-OPTIONS: S_MATNR FOR MARA-MATNR.

*------------------------------------------------------------------------*
*Start Of selection.
*------------------------------------------------------------------------*
START-OF-SELECTION.

*Selecting the data.
  PERFORM SELECT_DATA.

*Populating the field catelogue.
  PERFORM BUILD_FIELD_CAT.

*Displaying the final output.
  PERFORM DISPLY_OUTPUT.

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  Select_data
*&amp;amp;---------------------------------------------------------------------*
*       Selecting the data.
*----------------------------------------------------------------------*
FORM SELECT_DATA .

  SELECT MATNR
         MTART
         MBRSH FROM MARA
       INTO TABLE IT_MARA
       WHERE MATNR IN S_MATNR.

  IF NOT IT_MARA[] IS INITIAL.
    SELECT MATNR
           WERKS
           EKGRP FROM MARC
         INTO TABLE IT_MARC
         FOR ALL ENTRIES IN IT_MARA
         WHERE MATNR EQ IT_MARA-MATNR.
  ENDIF.

  IF NOT IT_MARC[] IS INITIAL.
    SELECT MATNR
           WERKS
           LGORT
           LABST FROM MARD
         INTO TABLE IT_MARD
         FOR ALL ENTRIES IN IT_MARC
         WHERE MATNR = IT_MARC-MATNR
         AND   WERKS = IT_MARC-WERKS.
  ENDIF.
ENDFORM.                    " Select_data
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  Build_field_cat
*&amp;amp;---------------------------------------------------------------------*
*      Populating the field catelogue.
*----------------------------------------------------------------------*
FORM BUILD_FIELD_CAT .

  DEFINE M_FIELDCAT1.
    WA_FIELD_CAT-TABNAME = &amp;amp;1.
    WA_FIELD_CAT-FIELDNAME = &amp;amp;2.
    WA_FIELD_CAT-SELTEXT_L = &amp;amp;3.
    APPEND WA_FIELD_CAT TO IT_FIELD_CAT1.
  END-OF-DEFINITION.

  DEFINE M_FIELDCAT2.
    WA_FIELD_CAT-TABNAME = &amp;amp;1.
    WA_FIELD_CAT-FIELDNAME = &amp;amp;2.
    WA_FIELD_CAT-SELTEXT_L = &amp;amp;3.
    APPEND WA_FIELD_CAT TO IT_FIELD_CAT2.
  END-OF-DEFINITION.

  DEFINE M_FIELDCAT3.
    WA_FIELD_CAT-TABNAME = &amp;amp;1.
    WA_FIELD_CAT-FIELDNAME = &amp;amp;2.
    WA_FIELD_CAT-SELTEXT_L = &amp;amp;3.
    APPEND WA_FIELD_CAT TO IT_FIELD_CAT3.
  END-OF-DEFINITION.

  M_FIELDCAT1 'MARA' 'MATNR' 'Material No'.
  M_FIELDCAT1 'MARA' 'MTART' 'Material type'.
  M_FIELDCAT1 'MARA' 'MBRSH' 'Industry Sector'.

  M_FIELDCAT2 'MARC' 'MATNR' 'Material No'.
  M_FIELDCAT2 'MARC' 'WERKS' 'Plant'.
  M_FIELDCAT2 'MARC' 'EKGRP' 'Purchasing Group'.

  M_FIELDCAT3 'MARD' 'MATNR' 'Material No'.
  M_FIELDCAT3 'MARD' 'WERKS' 'Plant'.
  M_FIELDCAT3 'MARD' 'LGORT' 'Storage Loc'.
  M_FIELDCAT3 'MARD' 'LABST' 'Valued Stock'.

  IT_EVENTS1-NAME  =  'TOP_OF_PAGE'.
  IT_EVENTS1-FORM  =  'F_TOP_OF_PAGE_ONE'.
  APPEND IT_EVENTS1.
  CLEAR IT_EVENTS1.

  IT_EVENTS2-NAME  =  'TOP_OF_PAGE'.
  IT_EVENTS2-FORM  =  'F_TOP_OF_PAGE_TWO'.
  APPEND IT_EVENTS2.
  CLEAR IT_EVENTS2.

  IT_EVENTS3-NAME  =  'TOP_OF_PAGE'.
  IT_EVENTS3-FORM  =  'F_TOP_OF_PAGE_THREE'.
  APPEND IT_EVENTS3.
  CLEAR IT_EVENTS3.

ENDFORM.                    " Build_field_cat
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  disply_output
*&amp;amp;---------------------------------------------------------------------*
*      Displaying the final output.
*----------------------------------------------------------------------*
FORM DISPLY_OUTPUT .

  CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
    EXPORTING
      I_CALLBACK_PROGRAM = SY-REPID.

  CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
    EXPORTING
      IS_LAYOUT                        = IT_LAYOUT
      IT_FIELDCAT                      = IT_FIELD_CAT1[]
      I_TABNAME                        = 'IT_MARA'
      IT_EVENTS                        = IT_EVENTS1[]
*   IT_SORT                          = IT_SORT
*   I_TEXT                           = ' '
    TABLES
      T_OUTTAB                         = IT_MARA     .

  CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
    EXPORTING
      IS_LAYOUT                        = IT_LAYOUT
      IT_FIELDCAT                      = IT_FIELD_CAT2[]
      I_TABNAME                        = 'IT_MARC'
      IT_EVENTS                        = IT_EVENTS2[]
*   IT_SORT                          = IT_SORT
*   I_TEXT                           = ' '
    TABLES
      T_OUTTAB                         = IT_MARC    .

  CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
    EXPORTING
      IS_LAYOUT                        = IT_LAYOUT
      IT_FIELDCAT                      = IT_FIELD_CAT3[]
      I_TABNAME                        = 'IT_MARD'
      IT_EVENTS                        = IT_EVENTS3[]
*   IT_SORT                          = IT_SORT
*   I_TEXT                           = ' '
    TABLES
      T_OUTTAB                         = IT_MARD    .

  CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
* EXPORTING
*   I_INTERFACE_CHECK             = ' '
*   IS_PRINT                      = IS_PRINT
*   I_SCREEN_START_COLUMN         = 0
*   I_SCREEN_START_LINE           = 0
*   I_SCREEN_END_COLUMN           = 0
*   I_SCREEN_END_LINE             = 0
* IMPORTING
*   E_EXIT_CAUSED_BY_CALLER       = E_EXIT_CAUSED_BY_CALLER
*   ES_EXIT_CAUSED_BY_USER        = ES_EXIT_CAUSED_BY_USER
* EXCEPTIONS
*   PROGRAM_ERROR                 = 1
*   OTHERS                        = 2
            .
  IF SY-SUBRC &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.

ENDFORM.                    " disply_output

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  top_of_page_one
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
FORM F_TOP_OF_PAGE_ONE.
  WRITE: / 'Header details (MARA)'.
ENDFORM.                    "top_of_page_one

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  top_of_page_one
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
FORM F_TOP_OF_PAGE_TWO.
  WRITE: / 'Item details (MARC)'.
ENDFORM.                    "top_of_page_one

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  top_of_page_one
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
FORM F_TOP_OF_PAGE_THREE.
  WRITE: / 'Item details (MARD)'.
ENDFORM.                    "top_of_page_one
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;venkat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Mar 6, 2008 10:41 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 14:54:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492040#M839795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-06T14:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: push button in dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492041#M839796</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;When you create the push buttons on the screen in SE51 there is a field called FctCODE...function code in the properties window. You have to give a code here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use that code in your program in the case stmt as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when ok_code = the the code you give for the pushbutton.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is how you can let your program to know that the user has clicked on that particular button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alchemi on Mar 6, 2008 9:00 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 14:59:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492041#M839796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-06T14:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: push button in dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492042#M839797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go to dynpro &lt;/P&gt;&lt;P&gt;screen painter &lt;/P&gt;&lt;P&gt;click on the button set a name and a text &lt;/P&gt;&lt;P&gt;SET A Function code by doubleclick the screen painer attributes open on the right side look for fktcode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;work with okcode in pai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 14:59:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492042#M839797</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-06T14:59:23Z</dc:date>
    </item>
    <item>
      <title>Re: push button in dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492043#M839798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you all very much !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have entered a fct.code now, BUT: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my program does not know 'ok_code' ???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i get access to the fct.code ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reg, Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 15:24:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492043#M839798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-06T15:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: push button in dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492044#M839799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your program u have to declare the OK_CODE field like sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the SE51 attributes u should give the OK_CODE field name in the ON code field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Selva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 15:27:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492044#M839799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-06T15:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: push button in dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492045#M839800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In PAI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
    module user_command_ok_code.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
module user_command_ok_code input.
   ok_code = sy-ucomm.
  if ok_code eq XXXX'
    " do somethng
  endif.,

endmodule.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 15:29:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492045#M839800</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2008-03-06T15:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: push button in dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492046#M839801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ooooooooookay, now i've got it &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but why can't i use sy-ucomm directly ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-ucomm = ....................... and so on ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards, Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 15:37:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492046#M839801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-06T15:37:01Z</dc:date>
    </item>
    <item>
      <title>Re: push button in dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492047#M839802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;usually ok_code will be the place holder for sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can also use sy-ucomm directly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 15:40:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492047#M839802</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2008-03-06T15:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: push button in dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492048#M839803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry guys, but here is the next question:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i now have a problem with radio-buttons:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have 3 radio buttons, but only ONE of them should be 'active'. now all 3 of them are switched 'on'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i handle this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards, Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 15:56:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492048#M839803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-06T15:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: push button in dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492049#M839804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to make 3 radio buttons in to a group. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ie&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the layout&lt;DEL&gt;&amp;gt; edit&lt;/DEL&gt;&amp;gt; grouping&lt;DEL&gt;&amp;gt; radio button group&lt;/DEL&gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 16:03:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492049#M839804</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2008-03-06T16:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: push button in dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492050#M839805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you create these radiobutton for your own report use the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters : rb_1 radiobutton group one,&lt;/P&gt;&lt;P&gt;             rb_2 radiobutton group one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you're creating a dialog program you should do the following:&lt;/P&gt;&lt;P&gt;place (drag and drop) the radiobuttons onto your screen, mark them (box) and the click left mouse button. Choose radiobutton group and then define.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Micky.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 16:05:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492050#M839805</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-03-06T16:05:36Z</dc:date>
    </item>
    <item>
      <title>Re: push button in dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492051#M839806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;well, the next problem &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now button 1 and 2 is 'ON' when entering the screen, button 3 is 'OFF'. &lt;/P&gt;&lt;P&gt;i have grouped all 3 buttons as you explained to me. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i only want ONE button to be clickable. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and how does my program now know WHICH button is 'ON' ???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i know, a lot of questions, but i am new to dynpro programming &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best r. Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 16:21:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492051#M839806</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-06T16:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: push button in dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492052#M839807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In module user_command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;say your radio button variables in the screen are like rad1 rad2 rad3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
if rad1  eq 'X'.
  "do something
endif.
if rad2  eq 'X'.
  "do something
endif.
if rad3  eq 'X'.
  "do something
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 16:26:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492052#M839807</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2008-03-06T16:26:03Z</dc:date>
    </item>
    <item>
      <title>Re: push button in dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492053#M839808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is not working:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is rad1, rad2 and rad3 ? the name of the buttons or the fct.code ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i group the radio buttons and enter a fct.code ALL 3 of them are getting&lt;/P&gt;&lt;P&gt;the SAME fct.code AUTOMATICLY. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and  if rad1, 2 ........ are the names of the buttons, they are not known by my program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reg, Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 16:30:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492053#M839808</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-06T16:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: push button in dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492054#M839809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;okay, i found out that i have to declare the names in the program ! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so there is one problem left:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;why are always TWO of the radio buttons ON ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reg, Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 16:43:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492054#M839809</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-06T16:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: push button in dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492055#M839810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is because of grouping &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here the sample screen download with 3 radio buttons . Try to save it as txt file and create a screen 100 upload the same and see&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
****************************************************************																																
*   THIS FILE IS GENERATED BY THE SCREEN PAINTER.              *																																
*   NEVER CHANGE IT MANUALLY, PLEASE !                         *																																
****************************************************************																																
%_DYNPRO																																
Z011111_48																																
0100																																
700																																
             40																																
%_HEADER																																
Z011111_48                              0100 0100      2 12192 37  0  0 27120  0G D                              20080306114022																																
%_DESCRIPTION																																
test																																
%_FIELDS																																
RAD1	C	CHAR	  1	80	00	80	00	00	  2	  7		  0	  0	  0		  0	A				  0	  0	101                                                                                RAD1	
RAD2	C	CHAR	  1	80	00	80	00	00	  2	 10		  0	  0	  0		  0	A				  0	  0	101                                                                                RAD1	
RAD3	C	CHAR	  1	80	00	80	00	00	  2	 13		  0	  0	  0		  0	A				  0	  0	101                                                                                RAD1	
OK_CODE		CHAR	 20	80	10	00	00	00	255	  1	O	  0	  0	  0		  0					  0	  0								____________________		
%_FLOWLOGIC																																
PROCESS BEFORE OUTPUT.																																
* MODULE STATUS_0100.																																
*																																
PROCESS AFTER INPUT.																																
																																
 MODULE USER_COMMAND_0100.																																
%_PARAMS																																
																																
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 16:49:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492055#M839810</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2008-03-06T16:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: push button in dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492056#M839811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ars, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you very much !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the problem was the following: you have to mark ALL 3 BUTTONS and then group it !!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i (as windows-used user) i thougt i can mark the first and the last with shift-key...........thats &lt;/P&gt;&lt;P&gt;very bad in dynpro editor !!!! &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now it works fine ! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;full points for you !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b. reg, Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 16:53:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-dynpro/m-p/3492056#M839811</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-06T16:53:32Z</dc:date>
    </item>
  </channel>
</rss>

