<?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 Selection screen design in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4891631#M1142812</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;&lt;/P&gt;&lt;P&gt;I need to format the selection-screen in a particular way according to the user's requirement.&lt;/P&gt;&lt;P&gt;There are 2 radio buttons "for selecting the run mode" and 2 parameters options "for entering the file names". Users are asking to place each of the filename parameter options beside the radio buttons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right now I have grouped 2 radiobuttons together (one under the other) and 2 parameters for filenames together l(one under the other) ike this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*-- Run Modes.
parameters: p_opt1 radiobutton group optn,
                  p_opt2 radiobutton group optn.

*-- File names.
parameters: p_file1 like rlgrap-filename,
                  p_file2  like rlgrap-filename.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise if this can be done. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Dec 2008 16:13:04 GMT</pubDate>
    <dc:creator>VenuAnumayam</dc:creator>
    <dc:date>2008-12-19T16:13:04Z</dc:date>
    <item>
      <title>Selection screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4891631#M1142812</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;&lt;/P&gt;&lt;P&gt;I need to format the selection-screen in a particular way according to the user's requirement.&lt;/P&gt;&lt;P&gt;There are 2 radio buttons "for selecting the run mode" and 2 parameters options "for entering the file names". Users are asking to place each of the filename parameter options beside the radio buttons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right now I have grouped 2 radiobuttons together (one under the other) and 2 parameters for filenames together l(one under the other) ike this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*-- Run Modes.
parameters: p_opt1 radiobutton group optn,
                  p_opt2 radiobutton group optn.

*-- File names.
parameters: p_file1 like rlgrap-filename,
                  p_file2  like rlgrap-filename.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise if this can be done. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2008 16:13:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4891631#M1142812</guid>
      <dc:creator>VenuAnumayam</dc:creator>
      <dc:date>2008-12-19T16:13:04Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4891632#M1142813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes it can be done using selection- screen begin of line and end of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this code snippet:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS: p_opt1 RADIOBUTTON GROUP optn.
SELECTION-SCREEN COMMENT 4(5) text-001 FOR FIELD p_opt1.
PARAMETERS: p_file1 LIKE rlgrap-filename.
SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS: p_opt2 RADIOBUTTON GROUP optn.
SELECTION-SCREEN COMMENT 4(5) text-002 FOR FIELD p_opt1.
PARAMETERS: p_file2  LIKE rlgrap-filename.
SELECTION-SCREEN END OF LINE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2008 16:18:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4891632#M1142813</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-12-19T16:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4891633#M1142814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try some thing like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
report  zaRs                              .
DATA wa_spfli TYPE spfli.

SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN POSITION pos_high.
parameters : v_radio radiobutton group optn.
PARAMETERS field(5) TYPE c.
SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN POSITION pos_high.
parameters : v_radio1 radiobutton group optn.
PARAMETERS field1(5) TYPE c.
SELECTION-SCREEN END OF LINE.

&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>Fri, 19 Dec 2008 16:20:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4891633#M1142814</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2008-12-19T16:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4891634#M1142815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the following code to put the filenames immediately after the radio button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS: p_opt1    RADIOBUTTON GROUP optn.
SELECTION-SCREEN COMMENT 2(20) text-s01 FOR FIELD p_opt1.
PARAMETERS: p_file1   LIKE rlgrap-filename.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS: p_opt2    RADIOBUTTON GROUP optn.
SELECTION-SCREEN COMMENT 2(20) text-s02 FOR FIELD p_opt2.
PARAMETERS: p_file2   LIKE rlgrap-filename.

SELECTION-SCREEN END OF LINE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can experiment with the length of the comment if you need it to be shorter or longer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Guy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2008 16:25:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4891634#M1142815</guid>
      <dc:creator>GuyF</dc:creator>
      <dc:date>2008-12-19T16:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4891635#M1142816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks All.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2008 16:42:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4891635#M1142816</guid>
      <dc:creator>VenuAnumayam</dc:creator>
      <dc:date>2008-12-19T16:42:30Z</dc:date>
    </item>
  </channel>
</rss>

