公众号:SAP Technical 本文作者:matinal 原文出处:http://www.cnblogs.com/SAPmatinal/ 原文链接:[ABAP系列]SAP ABAP如何在调试查看EXPORT/IMPORT 内存数据 前言部分 大家可以关注我的公众号,公众号里的排版更好,阅读更舒适. 正文部分 These memory IDs can be accessed in the debugger, but the option isn't accessible by defaul…
定义语法 DEFINE macro. ... &1 ... &9 ... END-OF-DEFINITION. 调用语法: macro [p1 p2 ... ]. 最多时能有9参数 例子: DATA: result TYPE i, n1 TYPE i VALUE 5, n2 TYPE i VALUE 6. DEFINE operation. result = &1 &2 &3. *&1 &2 &3是参数 output &1 &…
首先弄清楚ABAP Classic调试器和新调试器的区别: Classic debugger: (1) Static breakpoint a. BREAK-POINT : non-user specific b. BREAK user name user specific (2) Dynamic breakpoint New debugger: (1)Static breakpoint (2)Dynamic breakpoint a. session breakpoint b. externa…