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 techniques

Former Member
0 Likes
388

what are the debugging techniques?

3 REPLIES 3
Read only

Former Member
0 Likes
363
Read only

abdul_hakim
Active Contributor
0 Likes
363

Hi

you can type /h in the command field or set a static break point in the program using BREAK-POINT.You could also use watch points..

Have a look at the corresponding document under

http://help.sap.com

Cheers,

Abdul hakim

Read only

aris_hidalgo
Contributor
0 Likes
363

Hi,

As others have said, do check SAP documentation. Here are quick tips:

You place break points in the part of your code where you want it to stop to check for variable values,etc. Also, debugging is a good way to get a feel of the program since you can know its flow. You can also create watchpoints so that you can verify when a certain event happened(variable x had a value of 1 in this loop, etc.)

Hope this helps...

P.S. Please award points for useful answers.