<?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: selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/6661793#M1446416</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See below code to get Radio buttons for snow and rain.&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: p_snow RADIO BUTTON GROUP rg DEFAULT 'X,&lt;/P&gt;&lt;P&gt;                         p_rain   RADIO BUTTON GROUP rg.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 28 Feb 2010 07:22:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-02-28T07:22:34Z</dc:date>
    <item>
      <title>selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/6661789#M1446412</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'd like to have p_x as rain 'p_x as CHECKBOX.' how can i do it can you help me please?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Feb 2010 07:00:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/6661789#M1446412</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-28T07:00:11Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/6661790#M1446413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you pls elaborate. I did not get your question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Feb 2010 07:06:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/6661790#M1446413</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-28T07:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/6661791#M1446414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry about that I have a selection screen where I'd like to include rain as radio button so I have the following&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-001.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_snow AS CHECKBOX,&lt;/P&gt;&lt;P&gt;                       p_rain AS CHECKBOX.&lt;/P&gt;&lt;P&gt; SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I have the 2 radio buttin as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Snow &lt;/P&gt;&lt;P&gt;Rain&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope you got the point&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Feb 2010 07:13:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/6661791#M1446414</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-28T07:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/6661792#M1446415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In SE32 transaction, you can give the declaration like that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex: p_snow as snow and p_rain as rain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Feb 2010 07:21:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/6661792#M1446415</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2010-02-28T07:21:34Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/6661793#M1446416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See below code to get Radio buttons for snow and rain.&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: p_snow RADIO BUTTON GROUP rg DEFAULT 'X,&lt;/P&gt;&lt;P&gt;                         p_rain   RADIO BUTTON GROUP rg.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Feb 2010 07:22:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/6661793#M1446416</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-28T07:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/6661794#M1446417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you tell me how can i add it as text element please&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Feb 2010 07:50:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/6661794#M1446417</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-28T07:50:18Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/6661795#M1446418</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;In the SE38 menu, select GOTO-&amp;gt;TEXT ELEMENTS-&amp;gt;SELECTION TEXT, then you could edit the text element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you wanna use customized text at specified positon, you may need to use the following command:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT [/][pos](len) &lt;/P&gt;&lt;P&gt;                         {text|{[text] FOR FIELD sel}} &lt;/P&gt;&lt;P&gt;                         [VISIBLE LENGTH vlen] &lt;/P&gt;&lt;P&gt;                         [MODIF ID modid] &lt;/P&gt;&lt;P&gt;                         [ldb_additions]. &lt;/P&gt;&lt;P&gt;&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 POSITION pos [ldb_additions]]. &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;SELECTION-SCREEN: BEGIN OF LINE, &lt;/P&gt;&lt;P&gt;                  PUSHBUTTON 2(10) push USER-COMMAND fcode, &lt;/P&gt;&lt;P&gt;                  POSITION 16. &lt;/P&gt;&lt;P&gt;PARAMETERS para TYPE c LENGTH 20. &lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: COMMENT 40(40) text, &lt;/P&gt;&lt;P&gt;                  END OF LINE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION. &lt;/P&gt;&lt;P&gt;  push = 'Push'. &lt;/P&gt;&lt;P&gt;  text = '&amp;lt;--- Fill field, then push button!'. &lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Feb 2010 08:00:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/6661795#M1446418</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-28T08:00:16Z</dc:date>
    </item>
  </channel>
</rss>

