When we develop Sap abap applications, it is hard to avoid to use 'Loop' key words to implement our business requirments, even it is very often to use two loops or using 'read table' in a loop. Under this condition, many loops or using 'read table' in loops could occur very bad pe...
Avoid Nested Loops .Use FOR ALL ENTRIES. Regards, Lakshman. Reply Former Member In response to former_member209217 2009 Jul 22 2:30 AM 0 Kudos 622 SAP Managed Tags: ABAP Development what's the main function of SCI? Reply former_member209217 Active Contributor In response to...
a) do avoid nested loops b) whenever you use READ statement WITH KEY do BINARY SEARCH. c) when you have large tables with a unique index use hash tables d) avoid using the progress_bar fm e) do avoid SQL-Statements inside loops - rather modify internal table and at the end modify db...