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

Creating a Dump

Former Member
0 Likes
1,609

What are all the options available to create a dump other than the following approaches

1) Divide by Zero

2) Message X011.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,158

1) If the process run out

2) In the improper nested loop

3) Improper memory area

Regards

R.Rajendran

4 REPLIES 4
Read only

Former Member
0 Likes
1,159

1) If the process run out

2) In the improper nested loop

3) Improper memory area

Regards

R.Rajendran

Read only

Former Member
0 Likes
1,158

Hi,

There are thousand of ways. The simplese example is Field Symbols. Here if you do not use it properly, it can dump.

Regards,

Saurabh

Read only

vinod_vemuru2
Active Contributor
0 Likes
1,158

Hi,

There are many ways to create a dump. But why do u want to create a dump???

Simple way is call any FM and pass the parameters with incorrect type which is quite common dump.

Pass very big value to an integer value like

DATA: l_val TYPE i.

MOVE '123453421372362542345173' to l_val.

Like this there are thousands od ways.

Thanks,

Vinod.

Read only

Former Member
0 Likes
1,158

Hi Jenni,

You can create a dump using the message type 'X'.

For eg:

If <condition>

message 'Short Dump' type 'X'.

endif.

Hope this helps you.

Regards,

Chandra Sekhar