<?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: record between to values in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/record-between-to-values/m-p/6097770#M1359785</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;As per my understanding you need a select-option with the defaults between two intervals. you need to get the values in the f4 function with the limits entered on the selection. if so write the coding for at selection-screen on field s_lifnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 29 Aug 2009 10:46:51 GMT</pubDate>
    <dc:creator>former_member203501</dc:creator>
    <dc:date>2009-08-29T10:46:51Z</dc:date>
    <item>
      <title>record between to values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/record-between-to-values/m-p/6097765#M1359780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in my report i have selectio-screen fiels s_lifnr.&lt;/P&gt;&lt;P&gt;I want to display only records betweeb two values.&lt;/P&gt;&lt;P&gt;ex. it should disply records between  100 and 300 including both limits.&lt;/P&gt;&lt;P&gt;here 100 and 300 are not fixed.may vary&lt;/P&gt;&lt;P&gt;but it is displaying all records.(i.e. starting from 100 upto 900 )&lt;/P&gt;&lt;P&gt;i wrote like this.&lt;/P&gt;&lt;P&gt;Initialization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear So_lifnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so_lifnr-SIGN = 'I'.&lt;/P&gt;&lt;P&gt;so_lifnr-OPTION  = 'BT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND so_lifnr.&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Aug 2009 07:19:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/record-between-to-values/m-p/6097765#M1359780</guid>
      <dc:creator>former_member630092</dc:creator>
      <dc:date>2009-08-29T07:19:08Z</dc:date>
    </item>
    <item>
      <title>Re: record between to values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/record-between-to-values/m-p/6097766#M1359781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ravi,&lt;/P&gt;&lt;P&gt;can u tell me wat exact code you have written...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your code should be like...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so_lifnr-high = '0000000100'&lt;/P&gt;&lt;P&gt;so_lifnr-low = '0000000300'&lt;/P&gt;&lt;P&gt;so_lifnr-SIGN = 'I'.&lt;/P&gt;&lt;P&gt;so_lifnr-OPTION = 'BT'.&lt;/P&gt;&lt;P&gt;append so_lifnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will surely work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: if you are using select option thn no need for this code.. it is only required if u are using range and not select option.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Aug 2009 07:26:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/record-between-to-values/m-p/6097766#M1359781</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-29T07:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: record between to values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/record-between-to-values/m-p/6097767#M1359782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;nothing to change in code.&lt;/P&gt;&lt;P&gt;no initialization needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select option by default comes with BT facility.&lt;/P&gt;&lt;P&gt;why do you need a code for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its just &lt;/P&gt;&lt;P&gt;select-options s_lifnr for abcd-lifnr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Aug 2009 07:30:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/record-between-to-values/m-p/6097767#M1359782</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-29T07:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: record between to values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/record-between-to-values/m-p/6097768#M1359783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;Ravi,&lt;/P&gt;&lt;P&gt;          If u r using select-options by default it will fetch all the values between low and high value no need to initiliaze this.,.,.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u r going for ranges it may be useful..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and REgards,&lt;/P&gt;&lt;P&gt;Thirukumaran. R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Aug 2009 08:24:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/record-between-to-values/m-p/6097768#M1359783</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-29T08:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: record between to values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/record-between-to-values/m-p/6097769#M1359784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need not to do anything with select option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Provide selection screen validation on the field and restrict the entries between 100 and 300.Display an error message if a user enters some other value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, you an set default value if required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Aug 2009 09:22:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/record-between-to-values/m-p/6097769#M1359784</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-29T09:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: record between to values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/record-between-to-values/m-p/6097770#M1359785</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;As per my understanding you need a select-option with the defaults between two intervals. you need to get the values in the f4 function with the limits entered on the selection. if so write the coding for at selection-screen on field s_lifnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Aug 2009 10:46:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/record-between-to-values/m-p/6097770#M1359785</guid>
      <dc:creator>former_member203501</dc:creator>
      <dc:date>2009-08-29T10:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: record between to values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/record-between-to-values/m-p/6097771#M1359786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Answered&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Aug 2009 06:09:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/record-between-to-values/m-p/6097771#M1359786</guid>
      <dc:creator>former_member630092</dc:creator>
      <dc:date>2009-08-31T06:09:45Z</dc:date>
    </item>
  </channel>
</rss>

