<?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: parameter or select-option in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-or-select-option/m-p/1390508#M189785</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this the requirement: you should not display the range of the select option but allow multiple input's?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if this is the case use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: S_&amp;lt;name&amp;gt; for &amp;lt;fname&amp;gt; NO-INTERVALS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will not display the range. THe user can stil see the range when he clicks on the extension button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for removing this u have to restrict the select options in the initialization event.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Jul 2006 04:23:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-21T04:23:02Z</dc:date>
    <item>
      <title>parameter or select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-or-select-option/m-p/1390502#M189779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have requierment in which i am confused.I have to declare a field in selection screen for user input. I have declared the field as parameter.But there is no multiple select option. And user ant to have multiple select option(.i.e interval range).&lt;/P&gt;&lt;P&gt;The problem is the field i have declared in parameter is type c.Like:: Enterprise(30) type c,&lt;/P&gt;&lt;P&gt;              divivsion(30)  type c. &lt;/P&gt;&lt;P&gt;So this is not having any interval range.If i use select-option i can provide the range. SO plz help how can i define the parameter in select-option if its possible.&lt;/P&gt;&lt;P&gt;Most important thing is is there is no filed for refrence like: s_matnr for mara-matnr. as we can define in select-option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz suggest some thing on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Anu Maheshwari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2006 02:36:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-or-select-option/m-p/1390502#M189779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-21T02:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: parameter or select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-or-select-option/m-p/1390503#M189780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to have intervals, then you got to use SELECT-OPTIONS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to use select-options then you need to have a reference field from database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is not other way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note : Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2006 02:39:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-or-select-option/m-p/1390503#M189780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-21T02:39:30Z</dc:date>
    </item>
    <item>
      <title>Re: parameter or select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-or-select-option/m-p/1390504#M189781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to compare against a range, you can use select-options on your selection-screen other than that, use a parameter. Below is an example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Selection screen                            *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------" /&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_bukrs(4) TYPE c OBLIGATORY,&lt;/P&gt;&lt;P&gt;              p_budat TYPE bsik-budat OBLIGATORY.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;get records from BSIK&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  SELECT bukrs lifnr hkont belnr gjahr shkzg dmbtr sgtxt buzei&lt;/P&gt;&lt;P&gt;  FROM  bsik&lt;/P&gt;&lt;P&gt;  INTO TABLE it_final&lt;/P&gt;&lt;P&gt;  WHERE bukrs  = p_bukrs&lt;/P&gt;&lt;P&gt;    AND budat  &amp;lt; p_budat&lt;/P&gt;&lt;P&gt;    AND hkont  = lv_hkont.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S. Please award points for useful answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2006 02:43:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-or-select-option/m-p/1390504#M189781</guid>
      <dc:creator>aris_hidalgo</dc:creator>
      <dc:date>2006-07-21T02:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: parameter or select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-or-select-option/m-p/1390505#M189782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Define like below.&lt;/P&gt;&lt;P&gt;data: test(30).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS diviv FOR test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2006 02:51:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-or-select-option/m-p/1390505#M189782</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-21T02:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: parameter or select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-or-select-option/m-p/1390506#M189783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Decalare it as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)If you want your SELECT -OPTIONS to behave like parameters. USe the option.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SELECT-OPTIONS ..... NO INTERVALS NO-EXTENSION&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT abc.

DATA : v_enterpr(30) TYPE c,
v_divin(30) TYPE c.

SELECT-OPTIONS : s_enterp FOR v_enterpr NO INTERVALS NO-EXTENSION ,
                 s_divin  FOR v_divin NO INTERVALS NO-EXTENSION .

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)If you want to have it as SELECT-OPTIONS.&lt;/P&gt;&lt;P&gt;Then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT abc.

DATA : v_enterpr(30) TYPE c,
v_divin(30) TYPE c.

SELECT-OPTIONS : s_enterp FOR v_enterpr ,
                 s_divin  FOR v_divin .

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer to the program I gave in this link for more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1987800"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arun Sambargi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2006 04:21:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-or-select-option/m-p/1390506#M189783</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-21T04:21:30Z</dc:date>
    </item>
    <item>
      <title>Re: parameter or select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-or-select-option/m-p/1390507#M189784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt; select-options: s_matnr for mara-matnr NO-EXTENSION.&lt;/P&gt;&lt;P&gt;i hope it will works&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2006 04:22:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-or-select-option/m-p/1390507#M189784</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-21T04:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: parameter or select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-or-select-option/m-p/1390508#M189785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this the requirement: you should not display the range of the select option but allow multiple input's?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if this is the case use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: S_&amp;lt;name&amp;gt; for &amp;lt;fname&amp;gt; NO-INTERVALS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will not display the range. THe user can stil see the range when he clicks on the extension button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for removing this u have to restrict the select options in the initialization event.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2006 04:23:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-or-select-option/m-p/1390508#M189785</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-21T04:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: parameter or select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-or-select-option/m-p/1390509#M189786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U cannot create a select option without the field, all u may have to do is &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 for mara-matnr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2006 04:25:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-or-select-option/m-p/1390509#M189786</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-21T04:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: parameter or select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-or-select-option/m-p/1390510#M189787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Yes you can do that, Please check the below code.&lt;/P&gt;&lt;P&gt;Just check this..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ZTEST.

data: ent(30),div(30).

select-options: s_ent for ent,
                s_div for div.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2006 04:31:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-or-select-option/m-p/1390510#M189787</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-21T04:31:32Z</dc:date>
    </item>
  </channel>
</rss>

