<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection/m-p/2213267#M474312</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 have an selection statement like&lt;/P&gt;&lt;P&gt;PARAMETERS:GL LIKE SKB1-SAKNR.&lt;/P&gt;&lt;P&gt;Now i need to specify to ranges for this how can i do that like i need to mention in Low-High values at the same time i cannot use the SELECT-OPTIONS statement...please help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 May 2007 07:24:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-11T07:24:40Z</dc:date>
    <item>
      <title>Selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection/m-p/2213267#M474312</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 have an selection statement like&lt;/P&gt;&lt;P&gt;PARAMETERS:GL LIKE SKB1-SAKNR.&lt;/P&gt;&lt;P&gt;Now i need to specify to ranges for this how can i do that like i need to mention in Low-High values at the same time i cannot use the SELECT-OPTIONS statement...please help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 07:24:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection/m-p/2213267#M474312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T07:24:40Z</dc:date>
    </item>
    <item>
      <title>Re: Selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection/m-p/2213268#M474313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to use RANGES . If you declare RANGES ,It will not appear in the selection screen. &lt;/P&gt;&lt;P&gt;you can use it for processing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 08:22:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection/m-p/2213268#M474313</guid>
      <dc:creator>Bema</dc:creator>
      <dc:date>2007-05-11T08:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: Selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection/m-p/2213269#M474314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this Function Module "SELECT_OPTIONS_RESTRICT".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward If Helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 08:29:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection/m-p/2213269#M474314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T08:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: Selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection/m-p/2213270#M474315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 15&lt;/P&gt;&lt;P&gt;... VALUE-REQUEST &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;This addition is only allowed for database-specific parameters in the INCLUDE DBldbSEL . It permits self-programmed value help (for report-specific parameters, this is achieved by specifying the event key word AT SELECTION-SCREEN ON VALUE-REQUEST FOR ... ). The addition has the following effect: &lt;/P&gt;&lt;P&gt;On the selection screen, the parameter has a button for requesting possible entries. When the user presses this button or F4 , this starts the FORM routine p_VAL in the database access program SAPDBldb (if it exists). Then - even if the parameter with LIKE points to a Dictionary field - this FORM routine is processed rather than displaying the check table or the fixed values of the Dictionary field. You can also branch from the routine p_VAL to a function module which offers a selection list of possible values. At the end of the FORM routine, the contents of the field p are copied to the appropriate input/output field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;INCLUDE DBXYZSEL &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;PARAMETERS PL_TYPE LIKE SAPLANE-PLANETYPE VALUE-REQUEST. &lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT SAPDBXYZ DEFINING DATABASE XYZ. &lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;TABLES SAPLANE. &lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;FORM PL_TYPE_VAL. &lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;CALL FUNCTION ... &lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;ENDFORM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/paramete.htm" target="test_blank"&gt;http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/paramete.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 08:36:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection/m-p/2213270#M474315</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T08:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: Selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection/m-p/2213271#M474316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;you can do this way,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters : p_ebeln like ekpo-ebeln .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : ds_ebeln type ebeln,&lt;/P&gt;&lt;P&gt;         dg_ebeln like range of ds_ebeln with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dg_ebeln-low = p_ebeln.&lt;/P&gt;&lt;P&gt;dg_ebeln-sign = 'I'.&lt;/P&gt;&lt;P&gt;dg_ebeln-option = 'EQ'.&lt;/P&gt;&lt;P&gt;dg_ebeln-high = p_ebeln.&lt;/P&gt;&lt;P&gt;append dg_ebeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select ebeln from ekpo into table it_ekpo where ebeln in dg_ebeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Zarina&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 11:26:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection/m-p/2213271#M474316</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T11:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: Selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection/m-p/2213272#M474317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi vijay,&lt;/P&gt;&lt;P&gt;u can define RANGES instead of PARAMETERS....when u will define a ranges it will create a selection table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;define:&lt;/P&gt;&lt;P&gt;RANGES : r_field like SKB1-SAKNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;r_field-sign = u will have to put either 'I' or 'E' (inclusive or exclusive)&lt;/P&gt;&lt;P&gt;r_field-option = u will have to put option either u want the field value 'BT' or 'EQ' or 'NE'&lt;/P&gt;&lt;P&gt;r_field-low = low value of SKB1-SAKNR.&lt;/P&gt;&lt;P&gt;r_field-high = high value of SKB1-SAKNR.&lt;/P&gt;&lt;P&gt;append r_field.&lt;/P&gt;&lt;P&gt;clear r_field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once u had define ranges u can use that particular ranges in your select query....&lt;/P&gt;&lt;P&gt;in where clause &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from skb1 into table itab where saknr = r_field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thats all.....&lt;/P&gt;&lt;P&gt;hope this would help out...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 May 2007 07:26:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection/m-p/2213272#M474317</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-12T07:26:40Z</dc:date>
    </item>
  </channel>
</rss>

