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

Debugging in user exit

Former Member
0 Likes
1,156

Hi,

Can anyone tell me how to debug the user exit EXIT_SAPLIPW1_001 with the transaction CO01?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
917

Hard code the break point in that include of the function module.

break-point.

regards,

Madan.

4 REPLIES 4
Read only

Former Member
0 Likes
917

keep a breakpoint in the exit, then it automatically starts into debug mode when ever user exit triggers.

Try it..

Read only

Former Member
0 Likes
917

Hi,

enter /h before saving, in debug mode click (on menu) settings - update debugging and press F8. Another debug screen will appear. Set break-point at function module EXIT_SAPLIPW1_001 and press F8.

Cheers.

...Reward if useful.

Read only

Former Member
0 Likes
918

Hard code the break point in that include of the function module.

break-point.

regards,

Madan.

Read only

Former Member
0 Likes
917

Hey,

Use sy-uname to put break points in UserExit.

Ex:If sy-uname = 'pdevabat'.

breakpoint.

endif.

Note: if u doesnt use above condition then ur client system may work in debugging mode.

Edited by: Prince on May 19, 2008 8:07 AM