ABAP 740 里引入了一种新的 LET 表达式。在 LET 表达式里定义的 ABAP 变量和 FIELD-SYMBOLS,作用域就像 JavaScript 编程语言里,使用 let 关键字定义的变量一样,只在当前定义他们的 LET 表达式里生效。 ABAP 官方帮助文档,把在 LET 表达式里定义的 ABAP 变量,称为 auxiliary fields(辅助,备用字段)。这些 LET 表...
ABAP 740里的新语法 - LET表达式 A LET expression defines variables var1, var2, … or field symbols <fs1>, <fs2>, … as local auxiliary fields in an expression and assigned values to them. When declared, the auxiliary fields can be used in the operand positions of the expression. There ...
A LET expression defines variables var1, var2, … or field symbols , , … as local auxiliary fields in an expression and assigned values to them. When declared, the auxiliary fields can be used in t…