cancel
Showing results for 
Search instead for 
Did you mean: 

about debugging?

Former Member
0 Kudos

hi

plz guide me about debugging, what is use of that?how to do debugging?

regards

sudhakar

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

hi.

For debugging tutorial:

http://help.sap.com/saphelp_erp2005vp/helpdata/en/5a/4ed93f130f9215e10000000a155106/frameset.htm

http://www.sapdevelopment.co.uk/tips/debug/debughome.htm

http://www.sap-basis-abap.com/sapab002.htm

System Debugging

If you set this option, the Debugger is also activated for system programs (programs with status S in their program attributes). When you save breakpoints, the System Debugging setting is also saved.

Update Debugging

Update function modules do not run in the same user session as the program that is currently running in the ABAP Debugger. These function modules are therefore not included in debugging. Only if you select the Update Debugging option can you display and debug them after the COMMIT WORK.

Normal Debugging

Normal debugging is the one we do it by the normal dynamic break points or by /H or by using stattic break points.

You can switch to diffferent debuggin modes while processing.

BREAKPOINT

In the source code we set the Break-point there by clicking the stop button, the system will stop there when you execute the program.

Watchpoint

For watchpoints, we need to give some condition and when this condition is satisfied, program will stop

example : if you want to debug only

for matnr value 100 than set watch point

matnr = 100. when value reaches 100 than

program stops at that point.

more at

http://help.sap.com/saphelp_nw04/helpdata/en/c6/617cdce68c11d2b2ab080009b43351/content.htm

<b>Reward points if this helps you.</b>

Regards

Siva

Lakshmipathi
Active Contributor
0 Kudos
Former Member
0 Kudos

Hi,

Debugging is ABAPers work.But you should know the basic of it.T.code is /h.During debugging,you can feed the data and check its ouyput during runtime.

Vinu.N