<?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 Radiobutton in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1647173#M287802</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 am able to write the code to display radiobutton using PARAMETERS statement.&lt;/P&gt;&lt;P&gt;If i have 4 PARAMETERS statements, then radiobuttons are getting displayed one below oher.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, i want 2 columns of 4 rows each (of radiobuttons).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex - RB11 RB12&lt;/P&gt;&lt;P&gt;      RB21 RB22&lt;/P&gt;&lt;P&gt;      RB31 RB32&lt;/P&gt;&lt;P&gt;      RB41 RB42&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do i need to use SELECTION SCREEN statements to achieve this. If so, can someone help ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Nov 2006 01:07:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-16T01:07:19Z</dc:date>
    <item>
      <title>Radiobutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1647173#M287802</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 am able to write the code to display radiobutton using PARAMETERS statement.&lt;/P&gt;&lt;P&gt;If i have 4 PARAMETERS statements, then radiobuttons are getting displayed one below oher.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, i want 2 columns of 4 rows each (of radiobuttons).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex - RB11 RB12&lt;/P&gt;&lt;P&gt;      RB21 RB22&lt;/P&gt;&lt;P&gt;      RB31 RB32&lt;/P&gt;&lt;P&gt;      RB41 RB42&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do i need to use SELECTION SCREEN statements to achieve this. If so, can someone help ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 01:07:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1647173#M287802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-16T01:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: Radiobutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1647174#M287803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B1.&lt;/P&gt;&lt;P&gt;   SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;     PARAMETERS: RB11 RADIO BUTTON GROUP G1,&lt;/P&gt;&lt;P&gt;                              RB12 RADIO BUTTON GROUP G1.&lt;/P&gt;&lt;P&gt;   SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;     PARAMETERS: RB21 RADIO BUTTON GROUP G2,&lt;/P&gt;&lt;P&gt;                              RB22 RADIO BUTTON GROUP G2.&lt;/P&gt;&lt;P&gt;   SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;     PARAMETERS: RB31 RADIO BUTTON GROUP G3,&lt;/P&gt;&lt;P&gt;                              RB32 RADIO BUTTON GROUP G3.&lt;/P&gt;&lt;P&gt;   SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 01:10:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1647174#M287803</guid>
      <dc:creator>venkata_ramisetti</dc:creator>
      <dc:date>2006-11-16T01:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: Radiobutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1647175#M287804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe below code can give you some idea:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;selection-screen begin of line.
  parameters: p_rad1 radiobutton group rad1 default 'X'.
  selection-screen comment (15) var1 for field p_rad1.
  selection-screen position 30.
  parameters: p_rad2 radiobutton group rad1.
  selection-screen comment (15) var2 for field p_rad2.
selection-screen end of line.

selection-screen begin of line.
  parameters: p_rad3 radiobutton group rad2 default 'X'.
  selection-screen comment (15) var3 for field p_rad3.
  selection-screen position 30.
  parameters: p_rad4 radiobutton group rad2.
  selection-screen comment (15) var4 for field p_rad4.
selection-screen end of line.

selection-screen begin of line.
  parameters: p_rad5 radiobutton group rad3 default 'X'.
  selection-screen comment (15) var5 for field p_rad5.
  selection-screen position 30.
  parameters: p_rad6 radiobutton group rad3.
  selection-screen comment (15) var6 for field p_rad6.
selection-screen end of line.

selection-screen begin of line.
  parameters: p_rad7 radiobutton group rad4 default 'X'.
  selection-screen comment (15) var7 for field p_rad7.
  selection-screen position 30.
  parameters: p_rad8 radiobutton group rad4.
  selection-screen comment (15) var8 for field p_rad8.
selection-screen end of line.

initialization.

   move: 'Radio 1' to var1,
         'Radio 2' to var2,
         'Radio 3' to var3,
         'Radio 4' to var4,
         'Radio 5' to var5,
         'Radio 6' to var6,
         'Radio 7' to var7,
         'Radio 8' to var8.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 01:21:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1647175#M287804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-16T01:21:09Z</dc:date>
    </item>
    <item>
      <title>Re: Radiobutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1647176#M287805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used the same. Now, i don't see the text for the radio buttons.. I checked the 'Selection Texts'. I do have labels defined for radio buttons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is labels not allowed with SELECTION-SCREENS?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 01:40:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1647176#M287805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-16T01:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: Radiobutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1647177#M287806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sachin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this scenario, You need to specify labels for parameters using SELECTION-SCREEN COMMENT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am sorry. Eswer's logic will work good for your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can modify logic like below...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETERS: RB11 RADIO BUTTON GROUP G1.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN COMMENT 1(15) TEXT-001 FOR RB11.&lt;/P&gt;&lt;P&gt;PARAMETERS: RB12 RADIO BUTTON GROUP G1.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN COMMENT 30(15) TEXT-002 FOR RB12.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETERS: RB21 RADIO BUTTON GROUP G2.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN COMMENT 1(15) TEXT-003 FOR RB21.&lt;/P&gt;&lt;P&gt;PARAMETERS:RB22 RADIO BUTTON GROUP G2.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN COMMENT 30(15) TEXT-004 FOR RB22.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETERS: RB31 RADIO BUTTON GROUP G3.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN COMMENT 1(15) TEXT-005 FOR RB31.&lt;/P&gt;&lt;P&gt;PARAMETERS:RB32 RADIO BUTTON GROUP G3.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN COMMENT 30(15) TEXT-006 FOR RB32.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ramakrishna&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Ramakrishna Ramisetti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 01:56:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1647177#M287806</guid>
      <dc:creator>venkata_ramisetti</dc:creator>
      <dc:date>2006-11-16T01:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: Radiobutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1647178#M287807</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;do like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block b with frame title text-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;selection-screen:comment 1(6) text-002 for field rb11,  &amp;lt;b&amp;gt;&amp;lt;&amp;lt;this is the text element for radiobutton rb11 contains text to be displayed on the screen for button rb11,you can specify the position &amp;amp; length for the text to be displayed here&amp;gt;&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;                 comment 30(6) text-003 for field rb12.&lt;/P&gt;&lt;P&gt;selection-screen:position 8. &amp;lt;b&amp;gt;&amp;lt;&amp;lt;at position 8 1st radio button is displayed&amp;gt;&amp;gt;&amp;lt;/b&amp;gt;parameters:rb11 radiobutton group g1.&lt;/P&gt;&lt;P&gt;selection-screen:position 38.&lt;/P&gt;&lt;P&gt;parameters:rb12 radiobutton group g2.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;selection-screen:comment 1(6) text-004 for field rb21,&lt;/P&gt;&lt;P&gt;                 comment 30(6) text-005 for field rb22.&lt;/P&gt;&lt;P&gt;selection-screen:position 8.&lt;/P&gt;&lt;P&gt;parameters:rb21 radiobutton group g1.&lt;/P&gt;&lt;P&gt;selection-screen:position 38.&lt;/P&gt;&lt;P&gt;parameters:rb22 radiobutton group g2.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;selection-screen:comment 1(6) text-006 for field rb31,&lt;/P&gt;&lt;P&gt;                 comment 30(6) text-007 for field rb32.&lt;/P&gt;&lt;P&gt;selection-screen:position 8.&lt;/P&gt;&lt;P&gt;parameters:rb31 radiobutton group g1.&lt;/P&gt;&lt;P&gt;selection-screen:position 38.&lt;/P&gt;&lt;P&gt;parameters:rb32 radiobutton group g2.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;selection-screen:comment 1(6) text-008 for field rb41,&lt;/P&gt;&lt;P&gt;                 comment 30(6) text-009 for field rb42.&lt;/P&gt;&lt;P&gt;selection-screen:position 8.&lt;/P&gt;&lt;P&gt;parameters:rb41 radiobutton group g1.&lt;/P&gt;&lt;P&gt;selection-screen:position 38.&lt;/P&gt;&lt;P&gt;parameters:rb42 radiobutton group g2.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen end of block b.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can adjust the positons using POSITION parameter.&lt;/P&gt;&lt;P&gt;do assign points if it helps you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sowjanya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        sowjanya suggula&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 11:33:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1647178#M287807</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-16T11:33:58Z</dc:date>
    </item>
    <item>
      <title>Re: Radiobutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1647179#M287808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sachin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-t01.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT (20) text-t04 FOR FIELD p_c1.&lt;/P&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt;  p_c1 RADIOBUTTON GROUP 1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT (20) text-t04 FOR FIELD p_c2.&lt;/P&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt;  p_c2 RADIOBUTTON GROUP 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt;  p_c3 RADIOBUTTON GROUP 1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT (20) text-t04 FOR FIELD p_c3.&lt;/P&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt;  p_c4 RADIOBUTTON GROUP 1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT (20) text-t04 FOR FIELD p_c4.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt;  p_c5 RADIOBUTTON GROUP 1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT (20) text-t04 FOR FIELD p_c5.&lt;/P&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt;  p_c6 RADIOBUTTON GROUP 1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT (20) text-t04 FOR FIELD p_c6.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Anu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 16:03:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1647179#M287808</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-16T16:03:57Z</dc:date>
    </item>
  </channel>
</rss>

