<?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: select-options/range in screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-range-in-screen/m-p/3444471#M827227</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if u want to pass values in the selection screen use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Ex: &lt;/P&gt;&lt;P&gt;         selection-screen begin of block b1&lt;/P&gt;&lt;P&gt;           select-options : p_matnr for mara-matnr.&lt;/P&gt;&lt;P&gt;         selection-screen end of block b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else if u want to pass while execution of program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use Ranges&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:  ranges: p_matnr for mara-matnr.&lt;/P&gt;&lt;P&gt;        &lt;/P&gt;&lt;P&gt;         Pass variables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         p_matnr-low, p_matnr-high....................&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;Ajay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Feb 2008 07:15:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-25T07:15:03Z</dc:date>
    <item>
      <title>select-options/range in screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-range-in-screen/m-p/3444466#M827222</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;I just wanted to display select-options in the screen numbered 1000, &lt;/P&gt;&lt;P&gt;by putting which control can i do this ??........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Jose&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 06:39:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-range-in-screen/m-p/3444466#M827222</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T06:39:35Z</dc:date>
    </item>
    <item>
      <title>Re: select-options/range in screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-range-in-screen/m-p/3444467#M827223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   In your program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : MARA , QMEL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT-OPTIONS : s_matnr  LIKE MARA-Matnr,&lt;/P&gt;&lt;P&gt;                                 s_qmnum LIKE qmel-qmnum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But you can't  use range option on screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  This is useful to pass the values in range object without displaying the screen element on screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both will work as internal tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 06:45:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-range-in-screen/m-p/3444467#M827223</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T06:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: select-options/range in screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-range-in-screen/m-p/3444468#M827224</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;tables:mara.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 1000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options : s_matnr for mara-matnr .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 1000..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 06:47:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-range-in-screen/m-p/3444468#M827224</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T06:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: select-options/range in screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-range-in-screen/m-p/3444469#M827225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thnx Murali,&lt;/P&gt;&lt;P&gt;I have designed a screen numbered 1000, and placed a input box on it. i want to display select-options for input box. how can i do this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Jose&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 06:51:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-range-in-screen/m-p/3444469#M827225</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T06:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: select-options/range in screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-range-in-screen/m-p/3444470#M827226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jose,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  By default screen number is 1000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So .Do like this in tcode SE38&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create program..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : MARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_matnr. LIKE MARA-MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the program (ctrl+F2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;activate the program (ctrl+F3).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Execute Program(F8).&lt;/P&gt;&lt;P&gt;Now you can see  input  fields&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 07:07:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-range-in-screen/m-p/3444470#M827226</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T07:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: select-options/range in screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-range-in-screen/m-p/3444471#M827227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if u want to pass values in the selection screen use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Ex: &lt;/P&gt;&lt;P&gt;         selection-screen begin of block b1&lt;/P&gt;&lt;P&gt;           select-options : p_matnr for mara-matnr.&lt;/P&gt;&lt;P&gt;         selection-screen end of block b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else if u want to pass while execution of program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use Ranges&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:  ranges: p_matnr for mara-matnr.&lt;/P&gt;&lt;P&gt;        &lt;/P&gt;&lt;P&gt;         Pass variables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         p_matnr-low, p_matnr-high....................&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;Ajay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 07:15:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-range-in-screen/m-p/3444471#M827227</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T07:15:03Z</dc:date>
    </item>
    <item>
      <title>Re: select-options/range in screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-range-in-screen/m-p/3444472#M827228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanx Murali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I designed a screen numbered 1000 and placed alv on it.&lt;/P&gt;&lt;P&gt;I also put an input box on the screen and i want to display selections like select-options .....this is my question..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Jose&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 07:52:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-range-in-screen/m-p/3444472#M827228</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T07:52:50Z</dc:date>
    </item>
  </channel>
</rss>

