<?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: Performance problem in SDPVGEN in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018155#M1608437</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob and Hermann,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your valuable inputs. I have found that in table VBAK secondary index OI0 is inactive. I have proposed either of the two solutions to be applied to increase the performance of the SDPVGEN program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.	In the table VBAK there is a already an secondary index OI0(currently inactive) on fields MANDT, KUNNR, VKORG, ERNAM, &lt;/P&gt;&lt;P&gt;       OIEXGNUM. We need to activate this index and run the program SDPVGEN to see if the performance is increased.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.	The other option is to create an new secondary index on table VBAK with fields MANDT, KUNNR, VKORG, VTWEG, SPART, &lt;/P&gt;&lt;P&gt;        VBTYP, VBELN, ERDAT, ERZET as suggested in SAP note 378836.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Recommended the former to be applied and tested first. I will let you know if solves my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chinmay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Aug 2011 14:33:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-08-09T14:33:00Z</dc:date>
    <item>
      <title>Performance problem in SDPVGEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018143#M1608425</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 am running report SDPVGEN (generate product proposal) for only one sales organization. This report is executed in the background. This report is taking too much time to execute. I raised a message with SAP too. They suggested that in the function module SD_DPP_HISTORY there is a select statement which is taking too much time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT vkorg vtweg spart kunnr vbeln vbtyp erdat erzet&lt;/P&gt;&lt;P&gt;         FROM vbak&lt;/P&gt;&lt;P&gt;         INTO CORRESPONDING FIELDS OF ipvinx&lt;/P&gt;&lt;P&gt;         WHERE kunnr  =  i_kuagv-kunnr  AND&lt;/P&gt;&lt;P&gt;               vkorg  =  i_vkorg        AND&lt;/P&gt;&lt;P&gt;               vtweg  =  i_vtweg        AND&lt;/P&gt;&lt;P&gt;               spart  =  i_spart        AND&lt;/P&gt;&lt;P&gt;               vbtyp   =  vbtyp_auftr&lt;/P&gt;&lt;P&gt;         ORDER BY erdat DESCENDING erzet ASCENDING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    PERFORM periode_ermitteln USING    i_pvsmd-pvper&lt;/P&gt;&lt;P&gt;                                       ipvinx-vbeln&lt;/P&gt;&lt;P&gt;                                       ipvinx-erdat&lt;/P&gt;&lt;P&gt;                              CHANGING da_num.&lt;/P&gt;&lt;P&gt;    ipvinx-num = da_num.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF da_num &amp;gt; i_pvsmd-pvanz.&lt;/P&gt;&lt;P&gt;      EXIT.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    APPEND ipvinx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Going forward I created a Z function module and changed the SELECT .....ENDSELECT with INTO TABLES. But still the performance is not improved. I my checked finding the expensive select statements, too much time is been spent on sequential read of VBAK. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chinmay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2011 16:27:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018143#M1608425</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-08T16:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem in SDPVGEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018144#M1608426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You'll probably find that index VBAK~OI0 is not active in your system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2011 16:38:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018144#M1608426</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-08T16:38:33Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem in SDPVGEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018145#M1608427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chinmay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please check if index VBAK~OI0 is active on the db. &lt;/P&gt;&lt;P&gt;If not, activate it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(use transaction SE14 - enter vbak - display - indexes)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hermann&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S.: Rob was faster &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Hermann Gahm on Aug 8, 2011 6:45 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2011 16:44:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018145#M1608427</guid>
      <dc:creator>HermannGahm</dc:creator>
      <dc:date>2011-08-08T16:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem in SDPVGEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018146#M1608428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think I would activate it just yet. Since an OSS message is open, see what SAP has to say.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2011 17:04:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018146#M1608428</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-08T17:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem in SDPVGEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018147#M1608429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as far as i understood the statement - right now- is in customer code.&lt;/P&gt;&lt;P&gt;If it is in customer code, SAP standard support will reply with SAP note 48204 (or similar ones &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt; ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After proving it is in Standard code the same... it depends... it might take a longer journey through support (where maybe somebody might recommend the activation of that index) or makes it to development support quickly. &lt;/P&gt;&lt;P&gt;There somebody might look at it and... it depends again...  &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt; most likely somebody might recommend the activation of that index.&lt;/P&gt;&lt;P&gt;I doubt there will be an other outcome, since there is SAP note 378836 as welll &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i agree, it there shoudl be an official answer other than SAP note 48204 since it is in standard code as well.&lt;/P&gt;&lt;P&gt;Meanwhile &lt;STRONG&gt;I&lt;/STRONG&gt; would create that index...  &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hermann&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2011 17:23:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018147#M1608429</guid>
      <dc:creator>HermannGahm</dc:creator>
      <dc:date>2011-08-08T17:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem in SDPVGEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018148#M1608430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry Hermann, I should have explained more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try to avoid creating or activating indexes for one off reports due to the extra system overhead. The OP has probably(?) explained the situation to OSS and they would likely(?) be in a better position to judge.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would just run the report(?) in the background &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2011 17:28:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018148#M1608430</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-08T17:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem in SDPVGEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018149#M1608431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; I try to avoid creating or activating indexes for one off reports due to the extra system overhead. The OP has probably(?) explained the situation to OSS and they would likely(?) be in a better position to judge.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; I would just run the report(?) in the background &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;oh i see, that's something different, of course.&lt;/P&gt;&lt;P&gt;Yes for sure, the index should only be created if the sql is executed frequently and/or if the program is part of an important business process and/or if the program runs at the same time with &lt;U&gt;other&lt;/U&gt; important business processes. If the program is not executed very often, not important or not bothering the system... we can of course leaft it as it is &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's see, maybe the mesaage makes it to our queue (technology - development support) &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hermann&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2011 17:34:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018149#M1608431</guid>
      <dc:creator>HermannGahm</dc:creator>
      <dc:date>2011-08-08T17:34:09Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem in SDPVGEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018150#M1608432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for you replies,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I checked the index &lt;STRONG&gt;OI0&lt;/STRONG&gt; in table &lt;STRONG&gt;VBAK&lt;/STRONG&gt; and is found to be inactive. But the index is made on the fields MANDT, KUNNR, VKORG, ERNAM, OIEXGNUM whereas I am passing KUNNR, VKORG, VTWEG, SPART, VBTYP in my select query. I tried checking SAP note 378836 as well. It do suggest index creation on fields MANDT KUNNR VKORG VTWEG SPART VBTYP VBELN ERDAT ERZET in addition to applying correction 246740. But my system is ECC 6.0 and the SAP note is valid till SAP 46C and the correction 246740 is already applied. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, I have two options either to activate the index &lt;STRONG&gt;OI0&lt;/STRONG&gt; or a create a new with fields suggested in SAP note 378836. Not sure about which will be effective. Please suggest which one to go.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Chinmay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2011 08:32:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018150#M1608432</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-09T08:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem in SDPVGEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018151#M1608433</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;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; So, I have two options either to activate the index &lt;STRONG&gt;OI0&lt;/STRONG&gt; or a create a new with fields suggested in SAP note 378836. Not sure about which will be effective. Please suggest which one to go.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Thanks&lt;/P&gt;&lt;P&gt;&amp;gt; Chinmay&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i would go for thei &lt;STRONG&gt;OIO&lt;/STRONG&gt; index and test the run time again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hermann&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2011 08:54:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018151#M1608433</guid>
      <dc:creator>HermannGahm</dc:creator>
      <dc:date>2011-08-09T08:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem in SDPVGEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018152#M1608434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please check with your DBAs or Basis analysts to make sure they are OK with creating another index. It may be more effective to simply run the program in the background.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2011 13:18:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018152#M1608434</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-09T13:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem in SDPVGEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018153#M1608435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think that is what you mean:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
The most significant question to ask when thinking about adding a new index:

u201CWill the index eliminate significantly more work than it introduces (at the moments when it really matters) ?u201D&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from: &lt;A href="http://jonathanlewis.wordpress.com/2010/05/11/philosophy-10/" target="test_blank"&gt;http://jonathanlewis.wordpress.com/2010/05/11/philosophy-10/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i agree with you. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As i said before the index should only be created if it helps to improve the &lt;U&gt;overall&lt;/U&gt; performance, that's the bottom line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hermann&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2011 13:25:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018153#M1608435</guid>
      <dc:creator>HermannGahm</dc:creator>
      <dc:date>2011-08-09T13:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem in SDPVGEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018154#M1608436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I seem to remember this discussion from somewhere &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess we are both preaching to the choir.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2011 13:40:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018154#M1608436</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-09T13:40:29Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem in SDPVGEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018155#M1608437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob and Hermann,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your valuable inputs. I have found that in table VBAK secondary index OI0 is inactive. I have proposed either of the two solutions to be applied to increase the performance of the SDPVGEN program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.	In the table VBAK there is a already an secondary index OI0(currently inactive) on fields MANDT, KUNNR, VKORG, ERNAM, &lt;/P&gt;&lt;P&gt;       OIEXGNUM. We need to activate this index and run the program SDPVGEN to see if the performance is increased.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.	The other option is to create an new secondary index on table VBAK with fields MANDT, KUNNR, VKORG, VTWEG, SPART, &lt;/P&gt;&lt;P&gt;        VBTYP, VBELN, ERDAT, ERZET as suggested in SAP note 378836.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Recommended the former to be applied and tested first. I will let you know if solves my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chinmay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2011 14:33:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-in-sdpvgen/m-p/8018155#M1608437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-09T14:33:00Z</dc:date>
    </item>
  </channel>
</rss>

