Application Development 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: 

steps for debugging the ABAP program

Former Member
0 Kudos
2,868

Hi

Im a SAP-BW Consultant. I have a program in R/3-Side. I want to debugg that program.

Please give me the steps for debugging that program .

Kumar

6 REPLIES 6

Former Member
0 Kudos
457

Hi Ravi,

Check this link

http://help.sap.com/saphelp_nw2004s/helpdata/en/b3/d322540c3beb4ba53795784eebb680/content.htm

I give you some usefull Tips.

Type /h in command Bar.

Then press F8 then system will automatically goes to debugging mode.

Then press F5. Then it shows the Each and every line of your program.

or type break-point in your SE38 program. Then press F8. it will goes to the Debugging mode.

Thanks.

Reward If Helpful.

Message was edited by:

Viji

Former Member
0 Kudos
457

hi,

In the selection screen command line give' /h' then enter.Now execute the program it will go into debug mode.

Regards,

Sai

VikasB
Active Participant
0 Kudos
457

Hi,

Below are steps to debug the ABAP Report,

1. Execute the report using F8.

2. type /h in tcode input field.

3. Execute again with F8.

this will start ABAP debugger

you can see the values of any field or tables using the controls in debugger.

4. F5 will execute report line by line

5. F6 will execute any block of report like PERFORM or any Function Module

6. F7 will get the debugger to line at which break-point has been given

regards,

vikas

plz reward if helpful

Former Member
0 Kudos
457

Hi Ravi,

steps for debugging abap program,.

there are two types of debugging procedures they are external debugging and internal debuging.

for external debugging we have to put the cursor on the place where u want to debug and in application tool bar we hav a stop kind of button and we hav to click tht then a yellow color line will appear and normally execute it . a selection screen appears and automatically it will start debugging..

if u want particular user only to debug stopping the other users u can do it by writing in program as "breakpoint user <username>"

Try this it is easy....

regards,

Sana M.

reward for useful answers....

Former Member
0 Kudos
457

Hi Sir,

Debugging steps below :

Plz do reward if useful.

Thankx.

Debugging steps --->

1. Execute the report using F8.

2. type /h in tcode input field.

3. Execute again with F8.

this will start ABAP debugger you can see the values of any field or tables using the controls in debugger.

4. F5 will execute report line by line

5. F6 will execute any block of report like PERFORM or any Function Module

6. F7 will get the debugger to line at which break-point has been given

Hope itz helpful.