Tag: new abap
-
Using table comprehensions and reductions
I recently came across to useful features in the new ABAP syntax. These two functions relay on internal tables, where you can do some quick operations on it. Table comprehension The first example loads initially a table or a view to the variable lt_connections. The lt_connections contain later the fields, which are in the work…
-
Counting chars or entries in new ABAP syntax
May you wanted to count the length of a simple string or the total rows of an internal table. With the new ABAP syntax, it is possible to get these counts and lengths within the same line. Counting characters in a string With this method you can easily check the length of the string at…