码迷,mamicode.com
首页 > 其他好文 > 详细

Debug Intro

时间:2015-04-28 17:40:23      阅读:298      评论:0      收藏:0      [点我收藏+]

标签:

The ABAP Debugger is used?tool to execute and analyze programs line by line. Using it we can check the flow logic of a program and display runtime values of the variables. Currently, SAP offers two types of Debuggers:

  • The Classic ABAP Debugger
  • The New ABAP Debugger

The Classic ABAP Debugger, with its old user interface and its limitations to debug certain types of ABAP program is now not in use by many new and old ABAP developers.

The New ABAP Debugger, with its state of the art and flexible user interface, can be used to debug all types of ABAP programs. It provides many new features which improve our efficiency of debugging, both in ABAP support and development.

In this article, we will learn how to use these new features and discover some tips and tricks to efficiently use ABAP debugger.?

Switching between the Classic Debugger and New Debugger

You can switch between both the debugger and make any one your default debugger. To do this, go to ABAP Editor (SE38) Utilities ?Settings.

技术分享

? ?

Now in the user-specific settings pop up box click on ABAP Editor tab and then click on Debugging.

技术分享

? ?

Here you can select the New Debugger radio button to make it your default debugger.

技术分享

? ?

External (User) Debugging

External debugging is used?when we want to analyze our program which is called by an external user through HTTP such as Web Dynpro ABAP, Web Dynpro JAVA, and BSP etc. To activate external debugging we have to set?external breakpoints, which can be?set just like the session breakpoints by keeping the cursor on the desired code line and clicking on the ‘External Breakpoint‘ icon.

技术分享

? ?

We can also set the external user for whom the breakpoint?is to be?activated by going to ABAP Editor (SE38) Utilities ?Settings, and in the ‘user-specific settings‘ pop up box click on ABAP Editor Tab and then click on Debugging.

Here you can specify the username.

技术分享

? ?

技术分享

? ?

Watchpoints

技术分享

Watchpoints?can be?used to break the execution of a program when the values in a variable changes.

This help us to go to the exact position?where the variable changes. You can also specify conditions in Watchpoint?and the execution of?the program will break as soon as the condition is fulfilled.

To create a Watchpoint, click to the Watchpoint button in the New ABAP Debugger.

Now, in the Create Watchpoint?pop up enter the variable name for which you want to create the Watchpoint.

技术分享

? ?

Debugger Variants

With the help of Debugger Variant you can save the current debugger settings into the?database or to a local file. These settings include breakpoints, UI customizations and other special options for debugging tools.

Next time, when you will be debugging the same application you will not have to set breakpoints again or to do all the settings again. Also, when you are working in a large team then you can also pass the debugging variants to other users.

To save the Debugging Variant go to Debugger Debugger Session Save

技术分享

? ?

?You can save the current debugger session either to a file or in the database.

技术分享

? ?

In the Debugger Variant you can save the following components :

  1. Layout
  2. Breakpoints
  3. Settings
  4. Options

技术分享

? ?

To load the saved Debugger variants go to Debugger ?Debugger Session ?Load

技术分享

? ?

Debugging a modal window

Generally, we can activate debugging by typing /h in the command line, but what if the command line is not there?

技术分享

? ?

Often you will come across modal windows and other pop-up windows command line is not present and we cannot activate debugging directly. In such cases, you can either create a SAPGUI shortcut of type System Command and command /h or create a text file with below texts.

[FUNCTION]

Command=/H

Title=Debugger

Type=SystemCommand

To debug a modal window drag and drop the above created file over it.

技术分享

? ?

Debugging Tricks

Many a times, due to an incorrect?entry in a database table or a table without maintenance view we are not able to create, edit or delete a database record. In these cases we can use this debugging trick.

To do this, go to transaction code SE16.

技术分享

? ?

Enter the name of your database table. Select the line which you want to process, and press the display button. Enter /h in the command line and hit enter button two times.

技术分享

? ?

Now, the debugger window will open and you can see the source code. Click on the variable CODE, it will have SHOW as its value.

技术分享

? ?

Here you can edit this variable and set the new value based on the operation you want to perform.

By setting the variable CODE‘ with value as ‘EDIT‘ you can edit records,

INSR‘, Insert new records

DELE‘, Delete records

And, ANVO is for editing the record with primary keys.

技术分享

? ?

After setting the variable with the required operation, hit F8. Now, you are in EDIT mode. Press save button to save the record.

技术分享

? ?

The Magic of SHIFT + F12

You can use this key combination to bypass a specific line of code such as?a normal?sy-subrc?check or?an?authorization?check. To jump or bypass any line/lines of code all ?you have to fo is just put your cursor on the desired line and then press the SHIFT + F12 key.

Some limitations of New ABAP debugger Screen Debugging

When you try to set breakpoints in screen/dialog programs, you get the message stating that debugging is not yet supported.

技术分享

? ?

To get by this and debug your?screen/dialog programs just switch back to the classical debugger.

技术分享

? ?

ABAP Memory ID

In the new debugger it is not possible to view the used ABAP memory IDs and their content. But, in the classical debugger you can view the ABAP memory IDs by going to Go to ?System Areas ?ABAP Memory

技术分享

? ?

来自 <http://blog.csdn.net/hackai886/article/details/8032335>

Debug Intro

标签:

原文地址:http://www.cnblogs.com/rootbin/p/4463162.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!