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: 

Short dump in debug mode

Former Member
0 Kudos
741

Hi All,

We have recently upgraded our server from SAP R/3 4.6b to ECC 5.0. Whenever we are debugging any program(Both standard and Z-programs) getting short dump

in the select and endselect statements. This is happening only when we are going on DEBUG MODE only Appreciate any lights on this issue.(All programs are Unicode enabled).

Regards,

Ameer.

5 REPLIES 5

Former Member
0 Kudos
418

u cannt debug stmts like

select.

endselect.

this is a common issue.

Regards

Prabhu

Former Member
0 Kudos
418

Hi ,

This is not specifc to ECC , it happens in all systems , so it is generally not advised to put a breakpoint in SELECT - ENDSELECT statements , as there are chances of that to dump.

Regards

Arun

Former Member
0 Kudos
418

you cant debug the "select endselect", since it calls the iterations at database level you cant debug.

Former Member
0 Kudos
418

hi

your problem will solve if you put the break point after <b>ENDSELECT</b> statement. let the cursor not go inside the select-endselect statement. it causes short-dump.

thx

murthy

Former Member
0 Kudos
418

A breakpoint in SELECT loops can cause an exception through loss of the database cursor. The reason for this is that - during debugging - a database Commit is triggered.

Best Regards,

Vibha

*Please mark all the helpful answers