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 an ABAP Query

Former Member
0 Likes
2,707

Hi,

Please can someone tell me how to debug an ABAP Query ?

5 REPLIES 5
Read only

Former Member
0 Likes
1,179

Hit /h in the command prompt.

Regards,

John.

Read only

Former Member
0 Likes
1,179

Hi,

You can debugg an abap program. For this you can use /h or a session breakpoint available in the tool bar. If you want to debug an abap DB query (open sql) then I think it is not possible.

Best Regards,

Saurabh

Read only

Former Member
0 Likes
1,179

Hi,

please find this methods.

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

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.

Up_date 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.

Regards,

AAStha

Read only

Former Member
1,179

Hi,

Check this one

Activate the report.

Put break points, execute the program step wise and click on the variables to check the data.

For further details check the link.

http://help.sap.com/saphelp_nw04/helpdata/en/84/1f624f4505144199e3d570cf7a9225/frameset.htm

Thanks

Ankur sharma

Read only

Former Member
0 Likes
1,179

hi,,,

simply put a break-point in ur query. and run the query..

it will stop at break-point.