refer to:http://www.sap-advisor.com/abap-coding/debugging-tips-for-sap-smartforms-documents/
If you are not familiar with the ABAP debugger or if you are just getting started using it, then you might find it challenging to locate the ABAP code that you have written in your SmartForms documents.
The purpose of this article is to provide some information and a few tips on using the debugger to help troubleshoot problems in the ABAP code in SmartForms documents.
SmartForms
There are many advantages to using SmartForms over traditional SAPScripts for your SAP documents. While the interface makes it easier to design and implement the overall layout of the document, you also have the ability to incorporate ABAP code at strategic places right in the SmartForm without having to modify the print program.
However, there are times when you need to debug the ABAP code that you have written within your SmartForms document.
Debugging Tips
Those who have used the ABAP debugger know that it can sometimes be difficult to find the specific lines of code that you are looking for. In fact, it can sometimes be like looking for a needle in a haystack. At the very least, you can spend a significant amount of time stepping through layer after layer of programs, includes and function modules.
However, by knowing a few simple tips you can stop document printing at just the right location so that you can find and debug the ABAP code that you have written in your SmartForms document.
SmartForms – Function Module Names
First of all, it is important to realize that all SmartForms documents are compiled into their final run-time programs when they are activated. SAP dynamically creates a unique program name with associated includes and function modules when the SmartForm is activated.
While in your SmartForms document go to the menu option Environment –> Function Module Name. There you will find the function module name that SAP created for your SmartForms document. The name of the function module will look something like: /1BCDWB/SF00000015.
SmartForms - Program Names
The next step is to find the name of the SmartForms program name which can be done by using transaction code SE37 – Function Builder and entering the Function Module Name that you found in the previous step.
Go to the Attributes Tab and there you will find the program name which looks something like this: /1BCDWB/SAPLSF00000015. Notice that the word SAP has been added to the Function Module Name to create the Program Name.
Where SAP stores your ABAP Code in SmartForms
To find the ABAP code that you have written inside your SmartForms document simply double-click on the program name which will take you inside the program. There you will see several include statements in two different sections:
1. System-defined Include-files
/1BCDWB/LSF00000015TOP "Global Data
/1BCDWB/LSF00000015UXX "Function Modules
2. User-defined Include-files
/1BCDWB/LSF00000015F01 "User Code
Your ABAP code will be found within a FORM with near the end of the User-defined Include-files /1BCDWB/LSF00000015F01. A different FORM is generated for each section of code that you have written in the SmartForms document. Each FORM name is generated with the format %C##. For example your ABAP code will be located in a FORM that is named%C01, %C02, C03 and so forth.
Setting Breakpoints in the ABAP Debugger
Now that you know where to find your ABAP code in the SmartForms generated programs you are ready to get started using the ABAP Debugger. You can start by creating an output for your SmartForms document. At this point just before saving the document with the new output, simply enter /h and press execute. This will activate the debugger which will pop-up after saving the document.
Note: If you happen to activate the debugger before the document is saved then the debugger will start placing you in the ABAP code before the document save code begins and not where the document printing begins. If this happens then simply press the Continue button so that it will jump past the document save code and stop again where the document print code begins. If the document prints without the debugger stopping at the document print code then you will have to begin again.
Once the debugger starts you can quickly set a breakpoint using the Program Name and the User-Include file so that the debugger will stop exactly at the point where your ABAP code is located in the SmartForms document.
Use the menu path Breakpoints –> Breakpoint at –> Source Code and enter the Program Name and Include file name you found earlier. You will also need to enter the program line in the Row field in order to specify the exact location where you want the debugger to stop.
Program Name: /1BCDWB/SAPLSF00000015
Include: /1BCDWB/LSF00000015F01
Row: #### - "Line number of your code where it appears in the include file
Once you have the breakpoint set, press the Continue button. This will stop the SmartForm execution at the exact point where you want to start debugging you ABAP code. At this point you can check values of variables, look at table contents and step through your ABAP code to find out where problems exist.
Conclusion
Without knowing a few basic tips about how to find your ABAP code in a SmartForms document, you can spend a lot of time stepping through standard ABAP code in SAP. While object oriented code has changed the world of programming, it can also present challenges when you don’t know where to look to find the specific code that you want to troubleshoot.
Note: The Program Name and the Include File names of your SmartForms document will be different in each system in your SAP landscape since they will be dynamically recreated when they are transported to each system. Therefore, if you want to use the debugger on the same SmartForms document but in a different SAP system, you will have to lookup the Program Name and Include files names in that system.
分享到:
相关推荐
【标题】:Debugging Tools for Windows.zip 【描述】:这个压缩包文件“Debugging Tools for Windows.zip”包含了用于Windows环境下的调试工具,特别针对Qt Creator的调试器配置问题。通常,当Qt Creator的调试器...
Debugging Tools for Windows (x64)和Debugging Tools for Windows (x86) 微软Debugging Tools for Windows工具,简称windbg,查看dmp文件,调试驱动程序、应用程序等。
标题中的“Debugging tools for windows(x86 6.10.3.233)”指的是特定版本的Windows调试工具,适用于x86架构,并且版本号为6.10.3.233。这个工具集包含了多种调试器,如WinDbg、KD、CDB和NTSD,它们都是系统级调试的...
Debugging Tools for Windows,是为WINDOWS设计的调试程序工具,能够查看软件指令栈等功能。
《Windows分析工具——Debugging Tools for Windows (x86)深度解析》 Windows操作系统在运行过程中,有时会遇到各种异常情况,导致系统错误或应用程序崩溃。为了有效地诊断和解决这些问题,微软提供了一套强大的...
Windows操作系统提供了一套强大的调试工具——"Debugging Tools for Windows (x86)",这套工具对于在32位Windows环境下进行深度调试工作具有极高的价值。本文将深入探讨这些工具的使用以及如何在Qt环境中集成和应用...
目前CSDN下载频道中的微软调试工具WinDbg(即Debugging Tools for Windows)大都不适用于Win10系统,在Windows10中会报错:Could not find the xxx\MEMORY.DMP Dump File,Win32 error On87。这里提供的WinDbg10下载...
Windows 调试器 (简称WinDbg) 可用于调试内核模式和用户模式代码,来分析故障转储,并检查代码时 CPU 寄存器执行。适用于visual studio、qt和其他的IDE集成工具的调试工具。
<编写 Debugging Tools for Windows 扩展,第 3 部分:客户端和回调> <编写 Debugging Tools for Windows 扩展,第 2 部分:输出> <编写 Debugging Tools for Windows 扩展,第 1 部分> 三篇文章的所涉及的代码实例
Debugging Tools for Windows(x64) Debugging Tools for Windows(x86) 写QT程序时,要使用的abi调试器. 包含以下文件: WinSDKDebuggingTools WinSDKDebuggingTools_amd64 WinSDKDebuggingTools_ia64 ...
Windbg近一年来都没有更新了,这次的更新又没有提供单独的下载链接,特此为只需要Windbg的朋友提供一个快捷的下载链接
Debugging Tools for Windows 是一套强大的开发和调试工具,主要用于对Windows操作系统进行深入的故障排查和性能分析。这个工具集包含了多种实用程序,如WinDbg、KD、CDB、NTSD等,它们都是针对不同场景的专业调试器...
本文将重点介绍一款名为"Debugging Tools for Windows (x86)"的强大工具集,它为C++程序员提供了强大的调试和内存检查功能,帮助开发者高效地定位和解决代码中的问题。 Debugging Tools for Windows是微软提供的一...
Debugging Tools for Windows 软件包中生成符号服务器的实用程序
#### 标题解析:【Debugging Tips, Searching, Notifications, KVC,KVO】[PDF] [iPhone/iPad/iOS] 标题指出,文档内容涵盖的是iOS(包括iPhone和iPad)平台上的应用开发中关于调试技巧(Debugging Tips)、搜索功能...
In the predecessor volume of Debugging Applications for Microsoft .NET and Microsoft Windows, which dealt with Visual Basic 6, John Robbins broke new ground by codifying the techniques and strategies ...
它是微软开发的Debugging Tools for Windows套件的一部分,广泛应用于软件开发、系统崩溃分析、性能优化等领域。这款工具提供了丰富的命令行和图形界面功能,帮助开发者深入理解程序运行时的内部状态,定位和修复...