发布于 2012 年的 ABAP 7.40 是一个重要的版本,因为这个版本引入了很多新的语言特性和关键字,使得 ABAP 的语法看起来越来越像同时代的其他编程语言,比如 Java. 一转眼间,12 年过去了。本教程这个系列,会给…
Inline declaration of an internal table as a target field of an assignment and inline declaration of an appropriate work area in aLOOP. TYPES t_itab TYPE TABLE OF i WITH NON-UNIQUE KEY table_line. DATA(itab) = VALUE t_itab( ( 1 ) ( 2 ) ( 3 ) ). ...
As you will see in the 7.40 version of the ABAP Example Library, this feature has facilitated my writings of example programs considerably. Field Symbols For field symbols there is the new declaration operator FIELD-SYMBOL(...) that you can use at exactly three declaration positions. ASSIGN ....