<?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 parallel cursor method in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-cursor-method/m-p/12484458#M2002028</link>
    <description>&lt;P&gt;I have to implement a report using parallel cursor method.&lt;/P&gt;
  &lt;P&gt;Fetch vbeln, vbtyp, knumv from vbrk.&lt;/P&gt;
  &lt;P&gt;fetch POSNR, FKIMG, MATNR from VBRP&lt;/P&gt;
  &lt;P&gt;Pass VBRK-KNUMV to KONP table, fetch KBETR (SUM of all KSCHL) based on KNUMV &amp;amp; KOPOS.&lt;/P&gt;
  &lt;P&gt;Display all the above fields in the ALV output.&lt;/P&gt;
  &lt;P&gt;plz help with code.&lt;/P&gt;
  &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 22 Mar 2022 06:40:04 GMT</pubDate>
    <dc:creator>pritam_baboo49</dc:creator>
    <dc:date>2022-03-22T06:40:04Z</dc:date>
    <item>
      <title>parallel cursor method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-cursor-method/m-p/12484458#M2002028</link>
      <description>&lt;P&gt;I have to implement a report using parallel cursor method.&lt;/P&gt;
  &lt;P&gt;Fetch vbeln, vbtyp, knumv from vbrk.&lt;/P&gt;
  &lt;P&gt;fetch POSNR, FKIMG, MATNR from VBRP&lt;/P&gt;
  &lt;P&gt;Pass VBRK-KNUMV to KONP table, fetch KBETR (SUM of all KSCHL) based on KNUMV &amp;amp; KOPOS.&lt;/P&gt;
  &lt;P&gt;Display all the above fields in the ALV output.&lt;/P&gt;
  &lt;P&gt;plz help with code.&lt;/P&gt;
  &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2022 06:40:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-cursor-method/m-p/12484458#M2002028</guid>
      <dc:creator>pritam_baboo49</dc:creator>
      <dc:date>2022-03-22T06:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: parallel cursor method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-cursor-method/m-p/12484459#M2002029</link>
      <description>&lt;P&gt;You could search for previous questions and perhaps find &lt;A href="https://answers.sap.com/answers/13019972/view.html" target="_blank"&gt;an answer&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2022 10:25:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-cursor-method/m-p/12484459#M2002029</guid>
      <dc:creator>abo</dc:creator>
      <dc:date>2022-03-22T10:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: parallel cursor method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-cursor-method/m-p/12484460#M2002030</link>
      <description>&lt;P&gt;can you guide me on how to pass vbrk-knumv to konp when there is no common field.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2022 11:02:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-cursor-method/m-p/12484460#M2002030</guid>
      <dc:creator>pritam_baboo49</dc:creator>
      <dc:date>2022-03-22T11:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: parallel cursor method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-cursor-method/m-p/12484461#M2002031</link>
      <description>&lt;P&gt;KONP-KNUMV doesn't exist?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2022 14:43:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-cursor-method/m-p/12484461#M2002031</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-03-22T14:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: parallel cursor method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-cursor-method/m-p/12484462#M2002032</link>
      <description>&lt;P&gt;Yes, I know. But my question was how to pass VBRK-KNUMV to KONP.&lt;/P&gt;&lt;P&gt;I did some thing like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select vbeln&lt;BR /&gt;       vbtyp&lt;BR /&gt;       knumv&lt;BR /&gt;       FROM vbrk&lt;BR /&gt;       INTO TABLE lt_vbrk&lt;BR /&gt;       WHERE vbeln in s_vbeln.&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;BR /&gt;  SELECT vbeln&lt;BR /&gt;         posnr&lt;BR /&gt;         fkimg&lt;BR /&gt;         matnr&lt;BR /&gt;         FROM vbrp&lt;BR /&gt;         INTO TABLE lt_vbrp&lt;BR /&gt;         FOR ALL ENTRIES IN lt_vbrk&lt;BR /&gt;         WHERE vbeln = lt_vbrk-vbeln.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;    SELECT knumh&lt;BR /&gt;           kbetr&lt;BR /&gt;           kopos&lt;BR /&gt;      from konp&lt;BR /&gt;      INTO TABLE lt_konp&lt;BR /&gt;      FOR ALL ENTRIES IN  lt_vbrk&lt;BR /&gt;      WHERE KNUMH = lt_vbrk-knumv.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 23 Mar 2022 06:54:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-cursor-method/m-p/12484462#M2002032</guid>
      <dc:creator>pritam_baboo49</dc:creator>
      <dc:date>2022-03-23T06:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: parallel cursor method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-cursor-method/m-p/12484463#M2002033</link>
      <description>&lt;P&gt;What is the issue with WHERE KNUMH = lt_vbrk-knumv?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Mar 2022 17:48:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-cursor-method/m-p/12484463#M2002033</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-03-23T17:48:33Z</dc:date>
    </item>
  </channel>
</rss>

