‎2008 Jul 06 2:17 AM
What are all the options available to create a dump other than the following approaches
1) Divide by Zero
2) Message X011.
‎2008 Jul 06 4:29 AM
1) If the process run out
2) In the improper nested loop
3) Improper memory area
Regards
R.Rajendran
‎2008 Jul 06 4:29 AM
1) If the process run out
2) In the improper nested loop
3) Improper memory area
Regards
R.Rajendran
‎2008 Jul 06 11:43 AM
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
‎2008 Jul 06 1:05 PM
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.
‎2008 Jul 06 3:14 PM
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