<?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: problem in coding : ranges , plz help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-coding-ranges-plz-help/m-p/4014638#M959253</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the help..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Jun 2008 14:35:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-16T14:35:53Z</dc:date>
    <item>
      <title>problem in coding : ranges , plz help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-coding-ranges-plz-help/m-p/4014635#M959250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends:&lt;/P&gt;&lt;P&gt;   Plz see my sample code below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;r_rundate-sign    = 'I'.&lt;/P&gt;&lt;P&gt;  r_rundate-option  = 'EQ'.&lt;/P&gt;&lt;P&gt;  r_rundate-low     = '20080613'.&lt;/P&gt;&lt;P&gt;  r_rundate-high    = '20080613'.&lt;/P&gt;&lt;P&gt;  APPEND r_rundate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  r_runtime-sign     = 'I'.&lt;/P&gt;&lt;P&gt;  r_runtime-option   = 'EQ'.&lt;/P&gt;&lt;P&gt;  r_runtime-low      = '153017'.&lt;/P&gt;&lt;P&gt;  r_runtime-high     = '153042'.&lt;/P&gt;&lt;P&gt;  APPEND r_runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT  objectclas objectid changenr udate utime&lt;/P&gt;&lt;P&gt;          FROM cdhdr&lt;/P&gt;&lt;P&gt;          INTO TABLE lit_cdhdr&lt;/P&gt;&lt;P&gt;          WHERE objectclas = 'IDENTITY'&lt;/P&gt;&lt;P&gt;          and   utime IN r_runtime&lt;/P&gt;&lt;P&gt;          and   udate IN r_rundate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now the problem is that its picking only one line item while in the table there are 2 line items exists. the problem is that its picking only the data for r_runtime-low. its not picking up data for r_runtime-high. Objectclas is key field while utime &amp;amp; udate are not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to pick both the items from the table. Id I remove the condition of utime from my query, it fetches both the items.Plz help.Points will be rewarded.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 14:27:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-coding-ranges-plz-help/m-p/4014635#M959250</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T14:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: problem in coding : ranges , plz help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-coding-ranges-plz-help/m-p/4014636#M959251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;replace EQ with BT when filling "option".&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 14:32:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-coding-ranges-plz-help/m-p/4014636#M959251</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2008-06-16T14:32:50Z</dc:date>
    </item>
    <item>
      <title>Re: problem in coding : ranges , plz help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-coding-ranges-plz-help/m-p/4014637#M959252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change the code like follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
r_runtime-sign = 'I'.
r_runtime-option = 'BT'. "Change to between
r_runtime-low = '153017'.
r_runtime-high = '153042'.
APPEND r_runtime.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 14:33:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-coding-ranges-plz-help/m-p/4014637#M959252</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T14:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: problem in coding : ranges , plz help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-coding-ranges-plz-help/m-p/4014638#M959253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the help..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 14:35:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-coding-ranges-plz-help/m-p/4014638#M959253</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T14:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: problem in coding : ranges , plz help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-coding-ranges-plz-help/m-p/4014639#M959254</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;if you fill the ranges &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;r_rundate-sign = 'I'.&lt;/P&gt;&lt;P&gt;r_rundate-option = 'EQ'.&lt;/P&gt;&lt;P&gt;r_rundate-low = '20080613'.&lt;/P&gt;&lt;P&gt;r_rundate-high = '20080613'.&lt;/P&gt;&lt;P&gt;APPEND r_rundate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EQ = 'equal', the select check the record with data EQ r_rundate-low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;change EQ with BT   &lt;/P&gt;&lt;P&gt;BT = between&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;r_rundate-sign = 'I'.&lt;/P&gt;&lt;P&gt;r_rundate-option = 'BT'.&lt;/P&gt;&lt;P&gt;r_rundate-low = '20080613'.&lt;/P&gt;&lt;P&gt;r_rundate-high = '20080613'.&lt;/P&gt;&lt;P&gt;APPEND r_rundate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful, bye&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 14:36:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-coding-ranges-plz-help/m-p/4014639#M959254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T14:36:08Z</dc:date>
    </item>
  </channel>
</rss>

