<?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 using offset in join statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offset-in-join-statement/m-p/2697355#M624432</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;i wanted to use offset in join statement. but it is giving error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select a~kunnr&lt;/P&gt;&lt;P&gt;          a~vkorg&lt;/P&gt;&lt;P&gt;         from knvv as inner join zcust&lt;/P&gt;&lt;P&gt;         on knvv-kunnr+5(5) = zcust-refid.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Aug 2007 06:38:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-13T06:38:15Z</dc:date>
    <item>
      <title>using offset in join statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offset-in-join-statement/m-p/2697355#M624432</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;i wanted to use offset in join statement. but it is giving error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select a~kunnr&lt;/P&gt;&lt;P&gt;          a~vkorg&lt;/P&gt;&lt;P&gt;         from knvv as inner join zcust&lt;/P&gt;&lt;P&gt;         on knvv-kunnr+5(5) = zcust-refid.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 06:38:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offset-in-join-statement/m-p/2697355#M624432</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-13T06:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: using offset in join statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offset-in-join-statement/m-p/2697356#M624433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U CAN'T USE OFFSET at left side but u can use at right side of '=' sign&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S@meer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 06:40:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offset-in-join-statement/m-p/2697356#M624433</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-13T06:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: using offset in join statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offset-in-join-statement/m-p/2697357#M624434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sameer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i used it this way but still it gives error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select a~kunnr&lt;/P&gt;&lt;P&gt;a~vkorg&lt;/P&gt;&lt;P&gt;from knvv as inner join zcust&lt;/P&gt;&lt;P&gt;zcust-refid = knvv-kunnr+5(5) .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 06:44:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offset-in-join-statement/m-p/2697357#M624434</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-13T06:44:15Z</dc:date>
    </item>
    <item>
      <title>Re: using offset in join statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offset-in-join-statement/m-p/2697358#M624435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi neha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this code i tested it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of ty_knvv,&lt;/P&gt;&lt;P&gt;       INCLUDE type knvv,&lt;/P&gt;&lt;P&gt;       kunid type i, " For u type is zcust-refid&lt;/P&gt;&lt;P&gt;       end of ty_knvv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_knvv type STANDARD TABLE OF ty_knvv INITIAL SIZE 0,&lt;/P&gt;&lt;P&gt;      wa_knvv type ty_knvv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select *&lt;/P&gt;&lt;P&gt;  from knvv&lt;/P&gt;&lt;P&gt;    into table it_knvv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_knvv into wa_knvv.&lt;/P&gt;&lt;P&gt;  kunid = wa_knvv-kunnr+5(5).&lt;/P&gt;&lt;P&gt;  wa_knvv-kunid = kunid.&lt;/P&gt;&lt;P&gt;  MOdify it_knvv TRANSPORTING kunid.&lt;/P&gt;&lt;P&gt;  read table zcust into wa_zcust with key resid = wa_knvv-kunid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 07:00:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offset-in-join-statement/m-p/2697358#M624435</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-13T07:00:29Z</dc:date>
    </item>
  </channel>
</rss>

