2006 Dec 20 9:39 AM
Hi,
It happens only sometime that below line produce a getwa_not_assigned short dump.
Any idea how come this harmless looking statement produces dump?
-
if not ( lt_adrcon_del[] is initial ).
-
Thanks in advance,
Rohit.
Hi,
It happens only sometime that below line produce a getwa_not_assigned short dump.
Any idea how come this harmless looking statement produces dump?
-
if not ( lt_adrcon_del[] is initial ).
-
Thanks in advance,
Rohit.
2006 Dec 20 9:40 AM
Hello Rohit,
Make the If statement like this.
<b>if not lt_adrcon_del[] is initial.</b>
If useful reward.
Vasanth
2006 Dec 20 9:42 AM
Hello Vasanth,
Whats the difference?
Any reference to the source where you got this will be very helpful.
Thanks,
Rohit.
2006 Dec 20 9:46 AM
use one among these..
if not lt_adrcon_del[] is initial.
or
if lt_adrcon_del[] is not initial.
Regards
Vijay
2006 Dec 20 9:50 AM
Hi Vijay,
Thanks, i surely will.
Also,if could you tell me how come you came to this conclusion, it would be a great help.
Any reference for the same?
Or you have learned this by experimenting?
Thanks once again,
Rohit.