<?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: To get the material document without using VBFA. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-get-the-material-document-without-using-vbfa/m-p/1597475#M268296</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might add the fiscal year to the join condition, but other than that, I don't see any problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Oct 2006 13:44:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-13T13:44:33Z</dc:date>
    <item>
      <title>To get the material document without using VBFA.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-get-the-material-document-without-using-vbfa/m-p/1597472#M268293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have the following query but this is creating some performance issue since VBFA table is very huge.    &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;SELECT b~mblnr&lt;/P&gt;&lt;P&gt;           b~mjahr&lt;/P&gt;&lt;P&gt;    INTO TABLE t_vbfa_mkpf&lt;/P&gt;&lt;P&gt;    FROM vbfa AS a&lt;/P&gt;&lt;P&gt;    INNER JOIN mkpf AS b&lt;/P&gt;&lt;P&gt;    ON a&lt;SUB&gt;vbeln = b&lt;/SUB&gt;mblnr&lt;/P&gt;&lt;P&gt;    WHERE vbelv EQ '1234'&lt;/P&gt;&lt;P&gt;    AND vbtyp_n EQ 'R'&lt;/P&gt;&lt;P&gt;    AND vbtyp_v EQ 'T'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can somebody suggest an alternate way to get the Material Document Number &amp;amp; Material Document Year.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2006 05:37:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-get-the-material-document-without-using-vbfa/m-p/1597472#M268293</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-13T05:37:37Z</dc:date>
    </item>
    <item>
      <title>Re: To get the material document without using VBFA.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-get-the-material-document-without-using-vbfa/m-p/1597473#M268294</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;  One more way is to go directly to MKPF with key XBLNR = '1234' i.e delivery number, maybe restricting with document type and if any possible other conditions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Am not sure if this is really going to help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2006 06:27:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-get-the-material-document-without-using-vbfa/m-p/1597473#M268294</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-13T06:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: To get the material document without using VBFA.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-get-the-material-document-without-using-vbfa/m-p/1597474#M268295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think that querying MKPF by XBLNR in not a good idea. The table is not indexed on this feild.&lt;/P&gt;&lt;P&gt;The MKPF table has more than 5 million entries.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2006 07:03:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-get-the-material-document-without-using-vbfa/m-p/1597474#M268295</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-13T07:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: To get the material document without using VBFA.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-get-the-material-document-without-using-vbfa/m-p/1597475#M268296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might add the fiscal year to the join condition, but other than that, I don't see any problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2006 13:44:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-get-the-material-document-without-using-vbfa/m-p/1597475#M268296</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-13T13:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: To get the material document without using VBFA.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-get-the-material-document-without-using-vbfa/m-p/1597476#M268297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    use mkpf-xblnr in below logic &lt;/P&gt;&lt;P&gt;    SELECT mblnr&lt;/P&gt;&lt;P&gt;          mjahr from mkpf&lt;/P&gt;&lt;P&gt;INTO TABLE t_vbfa_mkpf&lt;/P&gt;&lt;P&gt;      where xblnr EQ '1234'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2006 14:42:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-get-the-material-document-without-using-vbfa/m-p/1597476#M268297</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-13T14:42:12Z</dc:date>
    </item>
  </channel>
</rss>

