<?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: Parameters in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters/m-p/1799247#M343207</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Use the following code.&lt;/P&gt;&lt;P&gt;Seleciton-screen begin of line.&lt;/P&gt;&lt;P&gt;parameters : p1 type &amp;lt;type1&amp;gt;,&lt;/P&gt;&lt;P&gt;                   p2 type &amp;lt;type2&amp;gt;&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vara&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Dec 2006 18:43:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-13T18:43:09Z</dc:date>
    <item>
      <title>Parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters/m-p/1799246#M343206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how to get 3 or 4 parameters in single line?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2006 18:41:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters/m-p/1799246#M343206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-13T18:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters/m-p/1799247#M343207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Use the following code.&lt;/P&gt;&lt;P&gt;Seleciton-screen begin of line.&lt;/P&gt;&lt;P&gt;parameters : p1 type &amp;lt;type1&amp;gt;,&lt;/P&gt;&lt;P&gt;                   p2 type &amp;lt;type2&amp;gt;&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vara&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2006 18:43:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters/m-p/1799247#M343207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-13T18:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters/m-p/1799248#M343208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should use the SELECTION-SCREEN BEGIN OF LINE statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


selection-screen begin of line.
parameters: p_check1 type c.
parameters: p_check2 type c.
parameters: p_check3 type c.
parameters: p_check4 type c.
selection-screen end of line.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did I pass the test yet?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2006 18:44:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters/m-p/1799248#M343208</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-12-13T18:44:32Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters/m-p/1799249#M343209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use this code&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 POSITION 1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 1(10) TEXT-R01 FOR FIELD BUY.&lt;/P&gt;&lt;P&gt;PARAMETERS: BUY RADIOBUTTON GROUP G1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN POSITION 16.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 16(10) TEXT-R02 FOR FIELD SELL.&lt;/P&gt;&lt;P&gt;PARAMETERS: SELL RADIOBUTTON GROUP G1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2006 18:44:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters/m-p/1799249#M343209</guid>
      <dc:creator>rahulkavuri</dc:creator>
      <dc:date>2006-12-13T18:44:43Z</dc:date>
    </item>
  </channel>
</rss>

