Вы находитесь на странице: 1из 2

Have a glance of two attachments you can list few topics from them and can say i have

used only this. 1. If exclusions exist, make sure they exist in the global filter area. Try to r emove exclusions by subtracting out inclusions. 2. Use Constant Selection to ignore filters in order to move more filters to the global filter area. (Use ABAPer to test and validate that this ensures better c ode) 3. Within structures, make sure the filter order exists with the highest level f ilter first. 4. Check code for all exit variables used in a report. 5. Move Time restrictions to a global filter whenever possible. 6. Within structures, use user exit variables to calculate things like QTD, YTD. This should generate better code than using overlapping restrictions to achieve the same thing. (Use ABAPer to test and validate that this ensures better code) . 7. When queries are written on multiproviders, restrict to InfoProvider in globa l filter whenever possible. MultiProvider (MultiCube) queries require additional database table joins to read data compared to those queries against standard In foCubes (InfoProviders), and you should therefore hardcode the infoprovider in t he global filter whenever possible to eliminate this problem. 8. Move all any filters hen you can calculated global calculated and restricted key figures to local as to analyze that can be removed and moved to the global definition in a query. T change the calculated key figure and go back to utilizing the global key figure if desired

9. If Alternative UOM solution is used, turn off query cache. 10. Set read mode of query based on static or dynamic. Reading data during navig ation minimizes the impact on the R/3 database and application server resources because only data that the user requires will be retrieved. For queries involvin g large hierarchies with many nodes, it would be wise to select Read data during navigation and when expanding the hierarchy option to avoid reading data for th e hierarchy nodes that are not expanded. Reserve the Read all data mode for spec ial queries---for instance, when a majority of the users need a given query to s lice and dice against all dimensions, or when the data is needed for data mining . This mode places heavy demand on database and memory resources and might impac t other SAP BW processes and tasks. 11. Turn off formatting and results rows to minimize Frontend time whenever poss ible. 12. Check for nested hierarchies. Always a bad idea. 13. If "Display as hierarchy" is being used, look for other options to remove it to increase performance. 14. Use Constant Selection instead of SUMCT and SUMGT within formulas. 15. Do review of order of restrictions in formulas. Do as many restrictions as y ou can before calculations. Try to avoid calculations before restrictions. 16. Check Sequential vs Parallel read on Multiproviders.

17. Turn off warning messages on queries. 18. Check to see if performance improves by removing text display (Use ABAPer to test and validate that this ensures better code). 19. Check to see where currency conversions are happening if they are used. 20. Check aggregation and exception aggregation on calculated key figures. Befor e aggregation is generally slower and should not be used unless explicitly neede d. 21. Avoid Cell Editor use if at all possible. 22. Make sure queries are regenerated in production using RSRT after changes to statistics, consistency changes, or aggregates. 23. Within the free characteristics, filter on the least granular objects first and make sure those come first in the order. 24. Leverage characteristics or navigational attributes rather than hierarchies. Using a hierarchy requires reading temporary hierarchy tables and creates addit ional overhead compared to characteristics and navigational attributes. Therefor e, characteristics or navigational attributes result in significantly better que ry performance than hierarchies, especially as the size of the hierarchy (e.g., the number of nodes and levels) and the complexity of the selection criteria inc rease. 25. If hierarchies are used, minimize the number of nodes to include in the quer y results. Including all nodes in the query results (even the ones that are not needed or blank) slows down the query processing. The "not assigned" nodes in th e hierarchy should be filtered out, and you should use a variable to reduce the number of hierarchy nodes selected.

Вам также может понравиться