Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

debug include

Former Member
0 Likes
1,552

Hello ,

I am working on a include related to USer Exit for Va02 .Here for debugging ,I understood from SDN that we have to give /h,But where to giv is it in the main screen of the va02 or in the se38 include program or where ? plese give process

1 ACCEPTED SOLUTION
Read only

former_member156446
Active Contributor
0 Likes
1,312

put a breakpoint at the include.. and execute va02...

6 REPLIES 6
Read only

former_member156446
Active Contributor
0 Likes
1,313

put a breakpoint at the include.. and execute va02...

Read only

Former Member
0 Likes
1,312

while running the transaction put /h

r else put a breakpoint in the include

Read only

Former Member
0 Likes
1,312

<b>Direct Processing</b>

You can start the Debugger without previously having set breakpoints. This is the best procedure to use when you want to test a program right from the beginning. It is also a useful procedure if you are not overly familiar with the program and therefore are not sure where best to set breakpoints. You can start the Debugger as follows:

<b>

From the Object Navigator</b>

Select a report or transaction and choose Program -> Test -> Debugging.

<b>From the ABAP Editor</b>

Choose Program -> Execute -> Debugging (or the Debugging pushbutton).

<b>From any screen</b>

Choose System -> Utilities -> Debug ABAP.

<b>From any screen</b>

Enter /h in the command field.

Display Modes in the Debugger

When you are debugging a program, there are various display modes that you can use. All of the display modes have the same structure. The top part of the screen displays an extract of the program source code. The bottom part displays the information specifically available in that display mode. There are also pushbuttons on the screen allowing you to switch to the most frequently-used display modes.

<b>Display Modes Available Using Pushbuttons</b>

<b>Fields</b>

The scrollable field display contains the contents of up to eight fields. The contents of the three most important system fields are always displayed. This is the default display mode in the Debugger. See also Processing Fields

Read only

Former Member
0 Likes
1,312

Hi,

if this break-point is to find when this user-exit is getting triggered.....then write the foll code inside ur include(UE)

BREAK-POINT.

Donot forget to remove this statement before transporting....

Cheers,

jose.

Read only

Former Member
0 Likes
1,312

Hi

or you can directly put a hard coded break point in your user exit and execute when ever control comes to user exit that will stop the t-code there and from that place start your verification by pressing F5

or if you want to debug a perticular screen then enter /H in the command bar

and press enter

after that if you do any action coresponding to that screen then it will take you to debug mode

Read only

Former Member
0 Likes
1,312

Hello,

if you want to debug VA02 then you will put /h in the command field one you have given /h whatever action you perform on the screen now will take you to debugging mode,

and if you just want to debug that particular include give /h in se38.

<REMOVED BY MODERATOR>

Thanks,

Gunjan

Edited by: Alvaro Tejada Galindo on Feb 14, 2008 3:46 PM