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

Former Member
0 Likes
662

Hi ,

Please reply me about debugging.

What is the use of debugging.

How to debug.

Abhay

1 ACCEPTED SOLUTION
Read only

0 Likes
642

Debugging is checking lines of code step by step to conform the expected results.

since in a programing langaue every thing is predictable so debugging provide means to verify wheather your expected output is same as executed by machine. however some enhanced form of debugger also provides you the facility for changing values of variable as well as code itself at runtime, so that you can see "interactive execution of your program instead of first writting the program then checking it and thinking how step would have been exucted during excution".

Thus debugger is a powerful programming tool to help programmer.

Please Reward if useful,

Regards,

Naveen Trivedi

5 REPLIES 5
Read only

Former Member
0 Likes
642

hi,

http://help.sap.com/saphelp_nw70/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm

Please browse the net for answers before posting a qtn.

Read only

Former Member
0 Likes
642

Abhay,

Debugging is used to check the status of program at different points,errors and field values appended at various points in program.

It can be done by inserting break-point statements at location where u want to check status of program or enter /h in command field after program activation and after entering /h press enter u enter in debugging mode now run program and perform single-step debugging for tracing single line-wise program.

also just refer:

For Debugging

Refer to this thread

http://help.sap.com/saphelp_47x200/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm

Amit.

Read only

Former Member
0 Likes
642

Hi,

Debugging - There are many uses i.e if are not getting data in the o/p then it is easy to now the reason why u are not getting the data. put a breakpoint in the program then by double-clicking on internal table or any, the data to be fetched , it is easy to know the error.

Also by watch points in debugging - by that if you want to see particular record rather than seeing all the records then we can do this by watch-points.

Please go through this link.

http://help.sap.com/saphelp_nw04/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/frameset.htm

Please reward points if helpful.

Read only

0 Likes
642

Hi,

debugging means stopping the program and analyse the results.at run time you can get how the program flow is running.

if there are any errors comes. you can easily find out that from where the problams are getting in debug mode and you can solve it.

Read only

0 Likes
645

Debugging is checking lines of code step by step to conform the expected results.

since in a programing langaue every thing is predictable so debugging provide means to verify wheather your expected output is same as executed by machine. however some enhanced form of debugger also provides you the facility for changing values of variable as well as code itself at runtime, so that you can see "interactive execution of your program instead of first writting the program then checking it and thinking how step would have been exucted during excution".

Thus debugger is a powerful programming tool to help programmer.

Please Reward if useful,

Regards,

Naveen Trivedi