<?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: radio button code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-code/m-p/2577366#M589057</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;radio buttons are defined as parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters p_id1 radiobutton group &amp;lt;group name&amp;gt;.&lt;/P&gt;&lt;P&gt;Parameters p_id2  radiobutton group &amp;lt;group name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON RADIOBUTTON GROUP radi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This event is triggered at the screen event PAI of a selection screen if all the fields of a radio button group radi of the selection screen were passed to the ABAP program. In the event block, the user input can be checked. Sending a warning or error message in the event block makes all the radion buttons of the block radi &lt;/P&gt;&lt;P&gt;ready for input again. &lt;/P&gt;&lt;P&gt;&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;dinesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Jul 2007 12:09:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-27T12:09:36Z</dc:date>
    <item>
      <title>radio button code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-code/m-p/2577364#M589055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;can anybody give me a sample code to use radio buttons  in a classical report..&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sangeet.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2007 12:06:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-code/m-p/2577364#M589055</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-27T12:06:32Z</dc:date>
    </item>
    <item>
      <title>Re: radio button code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-code/m-p/2577365#M589056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT YCLASSREP NO STANDARD PAGE HEADING LINE-COUNT 20(4).&lt;/P&gt;&lt;P&gt;TABLES : KNA1, VBAK,VBAP,SSCRFIELDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF ITAB OCCURS 0,&lt;/P&gt;&lt;P&gt;       KUNNR LIKE KNA1-KUNNR,&lt;/P&gt;&lt;P&gt;       NAME1 LIKE KNA1-KUNNR,&lt;/P&gt;&lt;P&gt;       END OF ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF JTAB OCCURS 0,&lt;/P&gt;&lt;P&gt;       VBELN LIKE VBAK-VBELN,&lt;/P&gt;&lt;P&gt;       ERDAT LIKE VBAK-ERDAT,&lt;/P&gt;&lt;P&gt;       END OF JTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF KTAB OCCURS 0,&lt;/P&gt;&lt;P&gt;       POSNR LIKE VBAP-POSNR,&lt;/P&gt;&lt;P&gt;       MATNR LIKE VBAP-MATNR,&lt;/P&gt;&lt;P&gt;       END OF KTAB.&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 : CUSTOMER RADIOBUTTON GROUP VAM,&lt;/P&gt;&lt;P&gt;             SALES RADIOBUTTON GROUP VAM,&lt;/P&gt;&lt;P&gt;             MATERIAL RADIOBUTTON GROUP VAM.&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 FUNCTION KEY 1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN FUNCTION KEY 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;SSCRFIELDS-FUNCTXT_01 = 'REPORT'.&lt;/P&gt;&lt;P&gt;SSCRFIELDS-FUNCTXT_02 = 'EXIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;IF SSCRFIELDS-UCOMM = 'FC01'.&lt;/P&gt;&lt;P&gt;   SSCRFIELDS-UCOMM = 'ONLI'.&lt;/P&gt;&lt;P&gt;ELSEIF&lt;/P&gt;&lt;P&gt;   SSCRFIELDS-UCOMM = 'FC02'.&lt;/P&gt;&lt;P&gt;   LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;IF CUSTOMER = 'X'.&lt;/P&gt;&lt;P&gt;SELECT KUNNR NAME1 FROM KNA1 INTO TABLE ITAB.&lt;/P&gt;&lt;P&gt;LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; ITAB-KUNNR, ITAB-NAME1.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSEIF SALES = 'X'.&lt;/P&gt;&lt;P&gt;SELECT VBELN ERDAT FROM VBAK INTO TABLE JTAB.&lt;/P&gt;&lt;P&gt;LOOP AT JTAB.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; JTAB-VBELN,JTAB-ERDAT.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;SELECT POSNR MATNR FROM VBAP INTO TABLE KTAB.&lt;/P&gt;&lt;P&gt;LOOP AT KTAB.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; KTAB-POSNR, KTAB-MATNR.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2007 12:09:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-code/m-p/2577365#M589056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-27T12:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: radio button code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-code/m-p/2577366#M589057</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;radio buttons are defined as parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters p_id1 radiobutton group &amp;lt;group name&amp;gt;.&lt;/P&gt;&lt;P&gt;Parameters p_id2  radiobutton group &amp;lt;group name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON RADIOBUTTON GROUP radi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This event is triggered at the screen event PAI of a selection screen if all the fields of a radio button group radi of the selection screen were passed to the ABAP program. In the event block, the user input can be checked. Sending a warning or error message in the event block makes all the radion buttons of the block radi &lt;/P&gt;&lt;P&gt;ready for input again. &lt;/P&gt;&lt;P&gt;&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;dinesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2007 12:09:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-code/m-p/2577366#M589057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-27T12:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: radio button code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-code/m-p/2577367#M589058</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;try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:       P_1  RADIOBUTTON GROUP PRI2 DEFAULT 'X'.&lt;/P&gt;&lt;P&gt;PARAMETERS:       P_2  RADIOBUTTON GROUP PRI2.&lt;/P&gt;&lt;P&gt;PARAMETERS:       P_3  RADIOBUTTON GROUP PRI2.&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;if p_1 = 'X'. write: / 'P_1'. endif.&lt;/P&gt;&lt;P&gt;if p_2 = 'X'. write: / 'P_2'. endif.&lt;/P&gt;&lt;P&gt;if p_3 = 'X'. write: / 'P_3'. endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2007 12:10:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-code/m-p/2577367#M589058</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-27T12:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: radio button code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-code/m-p/2577368#M589059</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;Refer the link,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/79/34a23dd9b511d1950e0000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/79/34a23dd9b511d1950e0000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2007 12:11:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-code/m-p/2577368#M589059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-27T12:11:48Z</dc:date>
    </item>
    <item>
      <title>Re: radio button code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-code/m-p/2577369#M589060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Pls chk the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME.&lt;/P&gt;&lt;P&gt; PARAMETERS: R1 RADIOBUTTON GROUP RAD1 DEFAULT 'X',&lt;/P&gt;&lt;P&gt;             R2 RADIOBUTTON GROUP RAD1,&lt;/P&gt;&lt;P&gt;             R3 RADIOBUTTON GROUP RAD1.&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.&lt;/P&gt;&lt;P&gt;  PARAMETERS: R4 RADIOBUTTON GROUP RAD2 DEFAULT 'X',&lt;/P&gt;&lt;P&gt;            R5 RADIOBUTTON GROUP RAD2,&lt;/P&gt;&lt;P&gt;             R6 RADIOBUTTON GROUP RAD2.&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 ON RADIOBUTTON GROUP RAD1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF R1 = 'X'.&lt;/P&gt;&lt;P&gt;MESSAGE W040(HB).&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON RADIOBUTTON GROUP RAD2.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt; IF R4 = 'X'.&lt;/P&gt;&lt;P&gt;  MESSAGE W040(HB).&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It might be helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;harris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2007 12:50:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-code/m-p/2577369#M589060</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-27T12:50:35Z</dc:date>
    </item>
  </channel>
</rss>

