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

abap debugging

Former Member
0 Likes
701

Hi all,

Iam debugging a standard screen (tcode migo), which contain lot of programs, I have the program name I have to go that program debug it, We can find list of all programs by goto menu

goto->Status Display->Loaded programs

there I can find that program which i need, can anybosy please ay me how to directly point into that program and debug there.

Thanks in advance

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
673

hi,

u know that exact prg name, so u can goto se38 & set a breakpoint there and execute the transction.....

it will be triggered....

With Regards,

S.BArani

6 REPLIES 6
Read only

Former Member
0 Likes
673

You could go to the program using SE38 and put a breakpoint in it, or use the watchpoints available in the debugger to have the debugger stop there. You will be asked to enter a program name and a variable value in the watchpoint, at which the debugger will stop.

Hope this helps.

Sudha

Read only

Former Member
0 Likes
674

hi,

u know that exact prg name, so u can goto se38 & set a breakpoint there and execute the transction.....

it will be triggered....

With Regards,

S.BArani

Read only

0 Likes
673

hi,

Iam debugging in production, I cant save break point there, I tried it, any other answers appriciatable.

Read only

0 Likes
673

If you are able to debug the program, then while in debugging see if you can set a watchpoint on any field of the program you wanted. In this way that program will be triggered.

Avoid debugging in production, try to simulate the error in DEV or QAS. It is the best and safe practise.

Reward points if useful.

Regards,

Atish

Read only

0 Likes
673

Hi,

Goto SE38 just get the subroutine defind in it.

In debugging Use break point at -> subroutine name & main program

Thanks

sandeep

Read only

Former Member
0 Likes
673

Thanks All for valuable feedback