<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/2293506#M500552</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;its not possible to use offset operator in where condition.&lt;/P&gt;&lt;P&gt;try for some other alternative.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 May 2007 07:04:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-23T07:04:57Z</dc:date>
    <item>
      <title>select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/2293501#M500547</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;this statement is not working,&lt;/P&gt;&lt;P&gt;please anybody let me know how to compare offset values in where clause&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this statement is showing an error, &lt;/P&gt;&lt;P&gt;Select  rebel  rebel  from lesser  into table get_purchase&lt;/P&gt;&lt;P&gt;                                   for all entries in  get_ship&lt;/P&gt;&lt;P&gt;                                   Where verdant in s_date&lt;/P&gt;&lt;P&gt;                                   and TX+0(10)  = get_ship-tokenism.&lt;/P&gt;&lt;P&gt;please give me an idea how to rectify it..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Adair&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 06:56:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/2293501#M500547</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T06:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/2293502#M500548</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't compare the offset values in where clause&lt;/P&gt;&lt;P&gt;better compare it in the loop of a internal table and ignore them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select rebel from lesser into table get_purchase&lt;/P&gt;&lt;P&gt;for all entries in get_ship&lt;/P&gt;&lt;P&gt;Where verdant in s_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at get_purchase.&lt;/P&gt;&lt;P&gt;read table get_ship with key.....&lt;/P&gt;&lt;P&gt;if  get_purchase-TX+0(10) &amp;lt;&amp;gt;  get_ship-tokenism.&lt;/P&gt;&lt;P&gt;  delete get_purchase index sy-tabix.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 07:01:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/2293502#M500548</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T07:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/2293503#M500549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhavi,&lt;/P&gt;&lt;P&gt;                    why u are select the same field(REBEL)  two times .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp;  Regards&lt;/P&gt;&lt;P&gt;Bhaskar Rao.M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 07:02:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/2293503#M500549</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T07:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/2293504#M500550</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;   We can't give offset values in WHERE clause of a SELECT stmt. After retriving the data only we can do it in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Bujji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 07:03:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/2293504#M500550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T07:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/2293505#M500551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;try &lt;/P&gt;&lt;P&gt;Select rebel from lesser into table get_purchase&lt;/P&gt;&lt;P&gt;for all entries in get_ship&lt;/P&gt;&lt;P&gt;Where verdant in s_date&lt;/P&gt;&lt;P&gt;and TX(10) = get_ship-tokenism.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 07:04:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/2293505#M500551</guid>
      <dc:creator>dev_parbutteea</dc:creator>
      <dc:date>2007-05-23T07:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/2293506#M500552</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;its not possible to use offset operator in where condition.&lt;/P&gt;&lt;P&gt;try for some other alternative.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 07:04:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/2293506#M500552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T07:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/2293507#M500553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you cannot  use offsets to the right hand fields in select&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not get_ship[] is initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select rebel rebel from lesser &amp;lt;b&amp;gt;TX&amp;lt;/b&amp;gt; into table get_purchase&lt;/P&gt;&lt;P&gt;for all entries in get_ship&lt;/P&gt;&lt;P&gt;Where verdant in s_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at get_pucharse.&lt;/P&gt;&lt;P&gt;v_tabix = sy-tabix.&lt;/P&gt;&lt;P&gt;  read table getship with key tokenism eq get_pucharse-TX+0(10).&lt;/P&gt;&lt;P&gt;  if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;     delete get_purchase index v_tabix.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Chandrasekhar Jagarlamudi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 07:05:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/2293507#M500553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T07:05:27Z</dc:date>
    </item>
    <item>
      <title>Re: select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/2293508#M500554</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;     "" TX+0(10) = get_ship-tokenism"" This checking is not possible in the where clause.It will Consider this whole word as a field and that is the reason u r getting an error..After the selection write an "IF" condition seperately to for Checking... Then why u r selecting rebel field twice..Correct that also..there is no other mistakes.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward All the helpfull Answers..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 07:06:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/2293508#M500554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T07:06:10Z</dc:date>
    </item>
    <item>
      <title>Re: select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/2293509#M500555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhavi,&lt;/P&gt;&lt;P&gt;You cannot use offset value on table field in where clause while retreving.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read value TX into internal table , Ex: get_purchase. and then compare it using offset by looping internal table. Ex. get_purchase-TX+0(2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points to all useful answers.&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;SaiRam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 07:16:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/2293509#M500555</guid>
      <dc:creator>former_member196280</dc:creator>
      <dc:date>2007-05-23T07:16:35Z</dc:date>
    </item>
  </channel>
</rss>

