<?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 Function module to get VBAK using VGBEL in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-vbak-using-vgbel/m-p/12364019#M1993286</link>
    <description>&lt;P&gt;Hello team,&lt;/P&gt;
  &lt;P&gt;As per project requirement.. I have to fetch VBAK data using VGBEL.&lt;/P&gt;
  &lt;P&gt;Since VGBEL is not a key field of VBAK I am facing performance issues.&lt;/P&gt;
  &lt;P&gt;Can any one suggest me a function module to get VBAK-VBELN using LIPS-VGBEL.&lt;/P&gt;
  &lt;P&gt;We also need to fetch TKNUM from vttp using vbeln (non key field of VTTP) &lt;/P&gt;</description>
    <pubDate>Fri, 22 Jan 2021 09:01:56 GMT</pubDate>
    <dc:creator>Subbaka11</dc:creator>
    <dc:date>2021-01-22T09:01:56Z</dc:date>
    <item>
      <title>Function module to get VBAK using VGBEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-vbak-using-vgbel/m-p/12364019#M1993286</link>
      <description>&lt;P&gt;Hello team,&lt;/P&gt;
  &lt;P&gt;As per project requirement.. I have to fetch VBAK data using VGBEL.&lt;/P&gt;
  &lt;P&gt;Since VGBEL is not a key field of VBAK I am facing performance issues.&lt;/P&gt;
  &lt;P&gt;Can any one suggest me a function module to get VBAK-VBELN using LIPS-VGBEL.&lt;/P&gt;
  &lt;P&gt;We also need to fetch TKNUM from vttp using vbeln (non key field of VTTP) &lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 09:01:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-vbak-using-vgbel/m-p/12364019#M1993286</guid>
      <dc:creator>Subbaka11</dc:creator>
      <dc:date>2021-01-22T09:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to get VBAK using VGBEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-vbak-using-vgbel/m-p/12364020#M1993287</link>
      <description>&lt;P&gt;First, stop thinking Function Module will solved everything because it is ... a FM&lt;/P&gt;&lt;P&gt;it is old school, forget it&lt;/P&gt;&lt;P&gt;VGBEL is a reference document, it could be the key of VBAK &lt;/P&gt;&lt;P&gt;The performance optimization depends of the context, how did you access the data, what do you need in VBAK ? &lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 09:26:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-vbak-using-vgbel/m-p/12364020#M1993287</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2021-01-22T09:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to get VBAK using VGBEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-vbak-using-vgbel/m-p/12364021#M1993288</link>
      <description>&lt;P&gt;Hello  &lt;SPAN class="mention-scrubbed"&gt;dubbaka&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;If you're facing performance issue reading VBAK by VGBEL then consider creating an additional index on the VBAK table with the VGBEL field as one of the fields.&lt;/P&gt;Kind regards,&lt;BR /&gt;Mateusz</description>
      <pubDate>Fri, 22 Jan 2021 09:40:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-vbak-using-vgbel/m-p/12364021#M1993288</guid>
      <dc:creator>MateuszAdamus</dc:creator>
      <dc:date>2021-01-22T09:40:14Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to get VBAK using VGBEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-vbak-using-vgbel/m-p/12364022#M1993289</link>
      <description>&lt;P&gt;Hi Frederic, &lt;/P&gt;&lt;P&gt;I am fetching TKNUM from VTTP table passing VBELN in where condition &lt;/P&gt;&lt;P&gt;since VBELN is not a key field of VTTP it would be bad in performance, so I am looking for FM.&lt;/P&gt;&lt;P&gt;Select&lt;/P&gt;&lt;P&gt;tknum,&lt;/P&gt;&lt;P&gt;tpnum,&lt;/P&gt;&lt;P&gt;vbeln&lt;/P&gt;&lt;P&gt;from VTTP&lt;/P&gt;&lt;P&gt;into table  @dat(it_vttp)&lt;/P&gt;&lt;P&gt;for all entries in  @it_likp_lips&lt;/P&gt;&lt;P&gt;where vbeln =  @it_likp_lips-vbeln.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 11:25:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-vbak-using-vgbel/m-p/12364022#M1993289</guid>
      <dc:creator>Subbaka11</dc:creator>
      <dc:date>2021-01-22T11:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to get VBAK using VGBEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-vbak-using-vgbel/m-p/12364023#M1993290</link>
      <description>&lt;P&gt;Check VEPVG Index, it is a link between Sales order &amp;amp; Transport. &lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 12:46:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-vbak-using-vgbel/m-p/12364023#M1993290</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2021-01-22T12:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to get VBAK using VGBEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-vbak-using-vgbel/m-p/12364024#M1993291</link>
      <description>&lt;P&gt;Your question is not very clear. I'm afraid I can't answer precisely.&lt;/P&gt;&lt;P&gt;Why do you want to read via a function module?&lt;/P&gt;&lt;P&gt;What is your LIPS-VGTYP value? (example, if VGTYP='C' then VGBEL refers to a sales order in VBAK i.e. LIPS-VGBEL -&amp;gt; VBAK-VBELN directly)&lt;/P&gt;&lt;P&gt;Concerning VTTP, it has THE index VBL over field VBELN in my S/4HANA system.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 12:53:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-vbak-using-vgbel/m-p/12364024#M1993291</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-01-22T12:53:15Z</dc:date>
    </item>
  </channel>
</rss>

