u r running a report .it is taking a long time for execution
.what steps will u do to reduce the execution time?
Answer Posted / jesuvin
Performance of reports could be increased by avaioind nested
select statements. Instead use Select ... FOR ALL ENTRIES.
Restrict the use of Select... Endselect, instead go for
select .. inot table itab and then loop at itab.
Avoid nested loop statement, Do not use select within loop.
Do not call function module within loop statement.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How many types of data classes are there in sap?
What happens Update command is used without where clause ?
What is direct input method ?
What is the process to enhance the Infotype
how can we enable hyperlink in screen painter?
How to debug a sapscript?
How can the standard tables of sap be modified?
What are the attributes of the data? : abap data dictionary
SM35 transaction, How to automate BDC ?
Is main window mandatory in smartforms?
How is conversion of data types done between abap/4 & external level?
Is it possible to pass data to and from include programs explicitly? : abap modularization
what are the critical issues u face in ur project?
when are objects are passed from task to the change request?
There is a situation where there is a field "MATERIAL DESCRIPTION" in say 20 display only transaction. You want that whenever user opens any of these transaction, this particular field is masked with ****. But table does not holds ****. It holds the actual value. What are different ways of doing it? Which is the best way.