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

How to identify error messages in custom programs by debugging?

Former Member
3,519

For example We have developed one custom program that program contains so many messages when we execute the program we get the error message. Now we have to identify that error message by debugging.

1 ACCEPTED SOLUTION
Read only

Domi
Active Contributor
2,833

Hi

It's also possible to do this in the debugger with "Breakpoint at":

regards

Domi

6 REPLIES 6
Read only

roberto_forti
Contributor
0 Likes
2,833

Hi,

Creating watchpoint for corresponding message... SAP community documentation will help you doing it.

Regards,

Read only

0 Likes
2,833

So this post is about setting a watchpoint with condition SY-MSGNO = 'xxx'. It's for old systems now that we have "breakpoint at message" (since abap 6.40 or before?)

Read only

Domi
Active Contributor
2,834

Hi

It's also possible to do this in the debugger with "Breakpoint at":

regards

Domi

Read only

TMSingh_SAP
Participant
0 Likes
2,833

Hi,

Above answers will help you.

Or in program search for for message as type 'E' or EXXX( XXX- message no) .

Read only

Former Member
0 Likes
2,833

Can we identify any type of messages by using this procedure?

Read only

Former Member
0 Likes
2,833

Thank you every one for spending your time and provide the answers.