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 prg

Former Member
0 Likes
430

Hi,

I have an user exit for VA01, which is a include program.

how to debug it, pls mention the steps.

1 ACCEPTED SOLUTION
Read only

JozsefSzikszai
Active Contributor
0 Likes
405

hi Debarshi,

place a breakpoint into the exit...

if it does not stop there, there could be few reasons behind:

1. The exit is not reached by the main program, you have to debug the reason.

2. Exit is called from FM in update task. You might have no more avaliable sessions or you have to turn on Update debugging

hope this helps

ec

2 REPLIES 2
Read only

JozsefSzikszai
Active Contributor
0 Likes
406

hi Debarshi,

place a breakpoint into the exit...

if it does not stop there, there could be few reasons behind:

1. The exit is not reached by the main program, you have to debug the reason.

2. Exit is called from FM in update task. You might have no more avaliable sessions or you have to turn on Update debugging

hope this helps

ec

Read only

former_member188827
Active Contributor
0 Likes
405

use statement

break <your user name>.

say if ur user name is abc.

put statement..

break abc.

in da user exit.