<?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 URGENT------MB5B : PERFORMANCE PROBLEM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-mb5b-performance-problem/m-p/3234997#M771857</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;We are getting the time out error while running the transaction MB5B. We have posted the same to SAP global support for further analysis, and SAP revrted with note 1005901 to review.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The note consists of creating the Z table and some Z programs to execute the MB5B without time out error, and SAP has not provided what type logic has to be written and how we can be addressed this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could any one suggest us how can we proceed further.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note as been attached for reference.&lt;/P&gt;&lt;P&gt;          Note 1005901 - MB5B: Performance problems&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note Language: English Version: 3 Validity: Valid from 05.12.2006&lt;/P&gt;&lt;P&gt;Summary&lt;/P&gt;&lt;P&gt;Symptom&lt;/P&gt;&lt;P&gt;o The user starts transaction MB5B, or the respective report&lt;/P&gt;&lt;P&gt;RM07MLBD, for a very large number of materials or for all materials&lt;/P&gt;&lt;P&gt;in a plant.&lt;/P&gt;&lt;P&gt;o The transaction terminates with the ABAP runtime error&lt;/P&gt;&lt;P&gt;DBIF_RSQL_INVALID_RSQL.&lt;/P&gt;&lt;P&gt;o The transaction runtime is very long and it terminates with the&lt;/P&gt;&lt;P&gt;ABAP runtime error TIME_OUT.&lt;/P&gt;&lt;P&gt;o During the runtime of transaction MB5B, goods movements are posted&lt;/P&gt;&lt;P&gt;in parallel:&lt;/P&gt;&lt;P&gt;- The results of transaction MB5B are incorrect.&lt;/P&gt;&lt;P&gt;- Each run of transaction MB5B returns different results for the&lt;/P&gt;&lt;P&gt;same combination of "material + plant".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;More Terms&lt;/P&gt;&lt;P&gt;MB5B, RM07MLBD, runtime, performance, short dump&lt;/P&gt;&lt;P&gt;Cause and Prerequisites&lt;/P&gt;&lt;P&gt;The DBIF_RSQL_INVALID_RSQL runtime error may occur if you enter too many&lt;/P&gt;&lt;P&gt;individual material numbers in the selection screen for the database&lt;/P&gt;&lt;P&gt;selection.&lt;/P&gt;&lt;P&gt;The runtime is long because of the way report RM07MLBD works. It reads the&lt;/P&gt;&lt;P&gt;stocks and values from the material masters first, then the MM documents&lt;/P&gt;&lt;P&gt;and, in "Valuated Stock" mode, it then reads the respective FI documents.&lt;/P&gt;&lt;P&gt;If there are many MM and FI documents in the system, the runtimes can be&lt;/P&gt;&lt;P&gt;very long.&lt;/P&gt;&lt;P&gt;If goods movements are posted during the runtime of transaction MB5B for&lt;/P&gt;&lt;P&gt;materials that should also be processed by transaction MB5B, transaction&lt;/P&gt;&lt;P&gt;MB5B may return incorrect results.&lt;/P&gt;&lt;P&gt;Example: Transaction MB5B should process 100 materials with 10,000 MM&lt;/P&gt;&lt;P&gt;documents each. The system takes approximately 1 second to read the&lt;/P&gt;&lt;P&gt;material master data and it takes approximately 1 hour to read the MM and&lt;/P&gt;&lt;P&gt;FI documents. A goods movement for a material to be processed is posted&lt;/P&gt;&lt;P&gt;approximately 10 minutes after you start transaction MB5B. The stock for&lt;/P&gt;&lt;P&gt;this material before this posting has already been determined. The new MM&lt;/P&gt;&lt;P&gt;document is also read, however. The stock read before the posting is used&lt;/P&gt;&lt;P&gt;as the basis for calculating the stocks for the start and end date.&lt;/P&gt;&lt;P&gt;If you execute transaction MB5B during a time when no goods movements are&lt;/P&gt;&lt;P&gt;posted, these incorrect results do not occur.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solution&lt;/P&gt;&lt;P&gt;The SAP standard release does not include a solution that allows you to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;process mass data using transaction MB5B. The requirements for transaction&lt;/P&gt;&lt;P&gt;MB5B are very customer-specific. To allow for these customer-specific&lt;/P&gt;&lt;P&gt;requirements, we provide the following proposed implementation:&lt;/P&gt;&lt;P&gt;Implementation proposal:&lt;/P&gt;&lt;P&gt;o You should call transaction MB5B for only one "material + plant"&lt;/P&gt;&lt;P&gt;combination at a time.&lt;/P&gt;&lt;P&gt;o The list outputs for each of these runs are collected and at the&lt;/P&gt;&lt;P&gt;end of the processing they are prepared for a large list output.&lt;/P&gt;&lt;P&gt;You need three reports and one database table for this function. You can&lt;/P&gt;&lt;P&gt;store the lists in the INDX cluster table.&lt;/P&gt;&lt;P&gt;o Define work database table ZZ_MB5B with the following fields:&lt;/P&gt;&lt;P&gt;- Material number&lt;/P&gt;&lt;P&gt;- Plant&lt;/P&gt;&lt;P&gt;- Valuation area&lt;/P&gt;&lt;P&gt;- Key field for INDX cluster table&lt;/P&gt;&lt;P&gt;o The size category of the table should be based on the number of&lt;/P&gt;&lt;P&gt;entries in material valuation table MBEW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report ZZ_MB5B_PREPARE&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------" /&gt;&lt;P&gt;In the first step, this report deletes all existing entries from the&lt;/P&gt;&lt;P&gt;ZZ_MB5B work table and the INDX cluster table from the last mass data&lt;/P&gt;&lt;P&gt;processing run of transaction MB5B.&lt;/P&gt;&lt;P&gt;o The ZZ_MB5B work table is filled in accordance with the selected&lt;/P&gt;&lt;P&gt;mode of transaction MB5B:&lt;/P&gt;&lt;P&gt;- Stock type mode = Valuated stock&lt;/P&gt;&lt;P&gt;- Include one entry in work table ZZ_MB5B for every "material +&lt;/P&gt;&lt;P&gt;valuation area" combination from table MBEW.&lt;/P&gt;&lt;P&gt;o Other modes:&lt;/P&gt;&lt;P&gt;- Include one entry in work table ZZ_MB5B for every "material +&lt;/P&gt;&lt;P&gt;plant" combination from table MARC&lt;/P&gt;&lt;P&gt;Furthermore, the new entries in work table ZZ_MB5B are assigned a unique&lt;/P&gt;&lt;P&gt;22-character string that later serves as a key term for cluster table INDX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report ZZ_MB5B_MONITOR&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------" /&gt;&lt;P&gt;This report reads the entries sequentially in work table ZZ_MB5B. Depending&lt;/P&gt;&lt;P&gt;on the mode of transaction MB5B, a lock is executed as follows:&lt;/P&gt;&lt;P&gt;o Stock type mode = Valuated stock&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For every "material + valuation area" combination, the system&lt;/P&gt;&lt;P&gt;determines all "material + plant" combinations. All determined&lt;/P&gt;&lt;P&gt;"material + plant" combinations are locked.&lt;/P&gt;&lt;P&gt;o Other modes:&lt;/P&gt;&lt;P&gt;- Every "material + plant" combination is locked.&lt;/P&gt;&lt;P&gt;- The entries from the ZZ_MB5B work table can be processed as&lt;/P&gt;&lt;P&gt;follows only if they have been locked successfully.&lt;/P&gt;&lt;P&gt;- Start report RM07MLBD for the current "Material + plant"&lt;/P&gt;&lt;P&gt;combination, or "material + valuation area" combination,&lt;/P&gt;&lt;P&gt;depending on the required mode.&lt;/P&gt;&lt;P&gt;- The list created is stored with the generated key term in the&lt;/P&gt;&lt;P&gt;INDX cluster table.&lt;/P&gt;&lt;P&gt;- The current entry is deleted from the ZZ_MB5B work table.&lt;/P&gt;&lt;P&gt;- Database updates are executed with COMMIT WORK AND WAIT.&lt;/P&gt;&lt;P&gt;- The lock is released.&lt;/P&gt;&lt;P&gt;- The system reads the next entry in the ZZ_MB5B work table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Application&lt;/P&gt;&lt;P&gt;- The lock ensures that no goods movements can be posted during&lt;/P&gt;&lt;P&gt;the runtime of the RM07MLBD report for the "material + Plant"&lt;/P&gt;&lt;P&gt;combination to be processed.&lt;/P&gt;&lt;P&gt;- You can start several instances of this report at the same&lt;/P&gt;&lt;P&gt;time. This method ensures that all "material + plant"&lt;/P&gt;&lt;P&gt;combinations can be processed at the same time.&lt;/P&gt;&lt;P&gt;- The system takes just a few seconds to process a "material +&lt;/P&gt;&lt;P&gt;Plant" combination so there is just minimum disruption to&lt;/P&gt;&lt;P&gt;production operation.&lt;/P&gt;&lt;P&gt;- This report is started until there are no more entries in the&lt;/P&gt;&lt;P&gt;ZZ_MB5B work table.&lt;/P&gt;&lt;P&gt;- If the report terminates or is interrupted, it can be started&lt;/P&gt;&lt;P&gt;again at any time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report ZZ_MB5B_PRINT&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------" /&gt;&lt;P&gt;You can use this report when all combinations of "material + plant", or&lt;/P&gt;&lt;P&gt;"material + valuation area" from the ZZ_MB5B work table have been&lt;/P&gt;&lt;P&gt;processed. The report reads the saved lists from the INDX cluster table and&lt;/P&gt;&lt;P&gt;adds these individual lists to a complete list output.&lt;/P&gt;&lt;P&gt;Estimated implementation effort&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An experienced ABAP programmer requires an estimated three to five days to&lt;/P&gt;&lt;P&gt;create the ZZ_MB5B work table and these three reports. You can find a&lt;/P&gt;&lt;P&gt;similar program as an example in Note 32236: MBMSSQUA.&lt;/P&gt;&lt;P&gt;If you need support during the implementation, contact your SAP consultant.&lt;/P&gt;&lt;P&gt;Header Data&lt;/P&gt;&lt;P&gt;Release Status: Released for Customer&lt;/P&gt;&lt;P&gt;Released on: 05.12.2006 16:14:11&lt;/P&gt;&lt;P&gt;Priority: Recommendations/additional info&lt;/P&gt;&lt;P&gt;Category: Consulting&lt;/P&gt;&lt;P&gt;Main Component MM-IM-GF-REP IM Reporting (no LIS)&lt;/P&gt;&lt;P&gt;The note is not release-dependent.      &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Neliea on Jan 9, 2008 10:38 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Neliea on Jan 9, 2008 10:39 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Jan 2008 06:08:39 GMT</pubDate>
    <dc:creator>former_member377111</dc:creator>
    <dc:date>2008-01-09T06:08:39Z</dc:date>
    <item>
      <title>URGENT------MB5B : PERFORMANCE PROBLEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-mb5b-performance-problem/m-p/3234997#M771857</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;We are getting the time out error while running the transaction MB5B. We have posted the same to SAP global support for further analysis, and SAP revrted with note 1005901 to review.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The note consists of creating the Z table and some Z programs to execute the MB5B without time out error, and SAP has not provided what type logic has to be written and how we can be addressed this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could any one suggest us how can we proceed further.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note as been attached for reference.&lt;/P&gt;&lt;P&gt;          Note 1005901 - MB5B: Performance problems&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note Language: English Version: 3 Validity: Valid from 05.12.2006&lt;/P&gt;&lt;P&gt;Summary&lt;/P&gt;&lt;P&gt;Symptom&lt;/P&gt;&lt;P&gt;o The user starts transaction MB5B, or the respective report&lt;/P&gt;&lt;P&gt;RM07MLBD, for a very large number of materials or for all materials&lt;/P&gt;&lt;P&gt;in a plant.&lt;/P&gt;&lt;P&gt;o The transaction terminates with the ABAP runtime error&lt;/P&gt;&lt;P&gt;DBIF_RSQL_INVALID_RSQL.&lt;/P&gt;&lt;P&gt;o The transaction runtime is very long and it terminates with the&lt;/P&gt;&lt;P&gt;ABAP runtime error TIME_OUT.&lt;/P&gt;&lt;P&gt;o During the runtime of transaction MB5B, goods movements are posted&lt;/P&gt;&lt;P&gt;in parallel:&lt;/P&gt;&lt;P&gt;- The results of transaction MB5B are incorrect.&lt;/P&gt;&lt;P&gt;- Each run of transaction MB5B returns different results for the&lt;/P&gt;&lt;P&gt;same combination of "material + plant".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;More Terms&lt;/P&gt;&lt;P&gt;MB5B, RM07MLBD, runtime, performance, short dump&lt;/P&gt;&lt;P&gt;Cause and Prerequisites&lt;/P&gt;&lt;P&gt;The DBIF_RSQL_INVALID_RSQL runtime error may occur if you enter too many&lt;/P&gt;&lt;P&gt;individual material numbers in the selection screen for the database&lt;/P&gt;&lt;P&gt;selection.&lt;/P&gt;&lt;P&gt;The runtime is long because of the way report RM07MLBD works. It reads the&lt;/P&gt;&lt;P&gt;stocks and values from the material masters first, then the MM documents&lt;/P&gt;&lt;P&gt;and, in "Valuated Stock" mode, it then reads the respective FI documents.&lt;/P&gt;&lt;P&gt;If there are many MM and FI documents in the system, the runtimes can be&lt;/P&gt;&lt;P&gt;very long.&lt;/P&gt;&lt;P&gt;If goods movements are posted during the runtime of transaction MB5B for&lt;/P&gt;&lt;P&gt;materials that should also be processed by transaction MB5B, transaction&lt;/P&gt;&lt;P&gt;MB5B may return incorrect results.&lt;/P&gt;&lt;P&gt;Example: Transaction MB5B should process 100 materials with 10,000 MM&lt;/P&gt;&lt;P&gt;documents each. The system takes approximately 1 second to read the&lt;/P&gt;&lt;P&gt;material master data and it takes approximately 1 hour to read the MM and&lt;/P&gt;&lt;P&gt;FI documents. A goods movement for a material to be processed is posted&lt;/P&gt;&lt;P&gt;approximately 10 minutes after you start transaction MB5B. The stock for&lt;/P&gt;&lt;P&gt;this material before this posting has already been determined. The new MM&lt;/P&gt;&lt;P&gt;document is also read, however. The stock read before the posting is used&lt;/P&gt;&lt;P&gt;as the basis for calculating the stocks for the start and end date.&lt;/P&gt;&lt;P&gt;If you execute transaction MB5B during a time when no goods movements are&lt;/P&gt;&lt;P&gt;posted, these incorrect results do not occur.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solution&lt;/P&gt;&lt;P&gt;The SAP standard release does not include a solution that allows you to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;process mass data using transaction MB5B. The requirements for transaction&lt;/P&gt;&lt;P&gt;MB5B are very customer-specific. To allow for these customer-specific&lt;/P&gt;&lt;P&gt;requirements, we provide the following proposed implementation:&lt;/P&gt;&lt;P&gt;Implementation proposal:&lt;/P&gt;&lt;P&gt;o You should call transaction MB5B for only one "material + plant"&lt;/P&gt;&lt;P&gt;combination at a time.&lt;/P&gt;&lt;P&gt;o The list outputs for each of these runs are collected and at the&lt;/P&gt;&lt;P&gt;end of the processing they are prepared for a large list output.&lt;/P&gt;&lt;P&gt;You need three reports and one database table for this function. You can&lt;/P&gt;&lt;P&gt;store the lists in the INDX cluster table.&lt;/P&gt;&lt;P&gt;o Define work database table ZZ_MB5B with the following fields:&lt;/P&gt;&lt;P&gt;- Material number&lt;/P&gt;&lt;P&gt;- Plant&lt;/P&gt;&lt;P&gt;- Valuation area&lt;/P&gt;&lt;P&gt;- Key field for INDX cluster table&lt;/P&gt;&lt;P&gt;o The size category of the table should be based on the number of&lt;/P&gt;&lt;P&gt;entries in material valuation table MBEW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report ZZ_MB5B_PREPARE&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------" /&gt;&lt;P&gt;In the first step, this report deletes all existing entries from the&lt;/P&gt;&lt;P&gt;ZZ_MB5B work table and the INDX cluster table from the last mass data&lt;/P&gt;&lt;P&gt;processing run of transaction MB5B.&lt;/P&gt;&lt;P&gt;o The ZZ_MB5B work table is filled in accordance with the selected&lt;/P&gt;&lt;P&gt;mode of transaction MB5B:&lt;/P&gt;&lt;P&gt;- Stock type mode = Valuated stock&lt;/P&gt;&lt;P&gt;- Include one entry in work table ZZ_MB5B for every "material +&lt;/P&gt;&lt;P&gt;valuation area" combination from table MBEW.&lt;/P&gt;&lt;P&gt;o Other modes:&lt;/P&gt;&lt;P&gt;- Include one entry in work table ZZ_MB5B for every "material +&lt;/P&gt;&lt;P&gt;plant" combination from table MARC&lt;/P&gt;&lt;P&gt;Furthermore, the new entries in work table ZZ_MB5B are assigned a unique&lt;/P&gt;&lt;P&gt;22-character string that later serves as a key term for cluster table INDX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report ZZ_MB5B_MONITOR&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------" /&gt;&lt;P&gt;This report reads the entries sequentially in work table ZZ_MB5B. Depending&lt;/P&gt;&lt;P&gt;on the mode of transaction MB5B, a lock is executed as follows:&lt;/P&gt;&lt;P&gt;o Stock type mode = Valuated stock&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For every "material + valuation area" combination, the system&lt;/P&gt;&lt;P&gt;determines all "material + plant" combinations. All determined&lt;/P&gt;&lt;P&gt;"material + plant" combinations are locked.&lt;/P&gt;&lt;P&gt;o Other modes:&lt;/P&gt;&lt;P&gt;- Every "material + plant" combination is locked.&lt;/P&gt;&lt;P&gt;- The entries from the ZZ_MB5B work table can be processed as&lt;/P&gt;&lt;P&gt;follows only if they have been locked successfully.&lt;/P&gt;&lt;P&gt;- Start report RM07MLBD for the current "Material + plant"&lt;/P&gt;&lt;P&gt;combination, or "material + valuation area" combination,&lt;/P&gt;&lt;P&gt;depending on the required mode.&lt;/P&gt;&lt;P&gt;- The list created is stored with the generated key term in the&lt;/P&gt;&lt;P&gt;INDX cluster table.&lt;/P&gt;&lt;P&gt;- The current entry is deleted from the ZZ_MB5B work table.&lt;/P&gt;&lt;P&gt;- Database updates are executed with COMMIT WORK AND WAIT.&lt;/P&gt;&lt;P&gt;- The lock is released.&lt;/P&gt;&lt;P&gt;- The system reads the next entry in the ZZ_MB5B work table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Application&lt;/P&gt;&lt;P&gt;- The lock ensures that no goods movements can be posted during&lt;/P&gt;&lt;P&gt;the runtime of the RM07MLBD report for the "material + Plant"&lt;/P&gt;&lt;P&gt;combination to be processed.&lt;/P&gt;&lt;P&gt;- You can start several instances of this report at the same&lt;/P&gt;&lt;P&gt;time. This method ensures that all "material + plant"&lt;/P&gt;&lt;P&gt;combinations can be processed at the same time.&lt;/P&gt;&lt;P&gt;- The system takes just a few seconds to process a "material +&lt;/P&gt;&lt;P&gt;Plant" combination so there is just minimum disruption to&lt;/P&gt;&lt;P&gt;production operation.&lt;/P&gt;&lt;P&gt;- This report is started until there are no more entries in the&lt;/P&gt;&lt;P&gt;ZZ_MB5B work table.&lt;/P&gt;&lt;P&gt;- If the report terminates or is interrupted, it can be started&lt;/P&gt;&lt;P&gt;again at any time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report ZZ_MB5B_PRINT&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------" /&gt;&lt;P&gt;You can use this report when all combinations of "material + plant", or&lt;/P&gt;&lt;P&gt;"material + valuation area" from the ZZ_MB5B work table have been&lt;/P&gt;&lt;P&gt;processed. The report reads the saved lists from the INDX cluster table and&lt;/P&gt;&lt;P&gt;adds these individual lists to a complete list output.&lt;/P&gt;&lt;P&gt;Estimated implementation effort&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An experienced ABAP programmer requires an estimated three to five days to&lt;/P&gt;&lt;P&gt;create the ZZ_MB5B work table and these three reports. You can find a&lt;/P&gt;&lt;P&gt;similar program as an example in Note 32236: MBMSSQUA.&lt;/P&gt;&lt;P&gt;If you need support during the implementation, contact your SAP consultant.&lt;/P&gt;&lt;P&gt;Header Data&lt;/P&gt;&lt;P&gt;Release Status: Released for Customer&lt;/P&gt;&lt;P&gt;Released on: 05.12.2006 16:14:11&lt;/P&gt;&lt;P&gt;Priority: Recommendations/additional info&lt;/P&gt;&lt;P&gt;Category: Consulting&lt;/P&gt;&lt;P&gt;Main Component MM-IM-GF-REP IM Reporting (no LIS)&lt;/P&gt;&lt;P&gt;The note is not release-dependent.      &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Neliea on Jan 9, 2008 10:38 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Neliea on Jan 9, 2008 10:39 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 06:08:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-mb5b-performance-problem/m-p/3234997#M771857</guid>
      <dc:creator>former_member377111</dc:creator>
      <dc:date>2008-01-09T06:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: URGENT------MB5B : PERFORMANCE PROBLEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-mb5b-performance-problem/m-p/3234998#M771858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;before you try any of this try working with database-hints as described in note 921165, 902157, 918992&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 15:46:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-mb5b-performance-problem/m-p/3234998#M771858</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T15:46:14Z</dc:date>
    </item>
  </channel>
</rss>

