Comparing INTO DATA VS FIELD-SYMBOL To Update Internal Table
When you want to update records of an internal table using LOOP ENDLOOP. The most common practice would be copying each row into a working are (INTO DATA) and modify the internal table afterwards. Many developers still unaware of the performance issues caused by this technique. In this tutorial, we’ll do a comparation between INTO…