‎2008 Jun 09 8:18 AM
In program SAPLSLVC I got a dump saying MESSAGE_TYPE_X.
Its giving error at statement:
if sy-subrc ne 0.
*message x000(0k).
endif.
what can be done for this ?
‎2008 Jun 09 9:22 AM
Hi ,
This would be some problem in the fieldcatalog created .
Please send the code or check the fieldcatalog creation in your report .
Please reward if useful.
‎2008 Jun 09 9:49 AM
it is the Summation button on the grid which is not working ..the button on grid giving the dump as MESSAGE_TYPE_X.
‎2008 Jun 09 9:54 AM
Hi,
the messaeg type X signifies this only, u get a short dump.
to avoid the short dump, chaneg the codnitions so that the sy-subrc is equal to 0 so that it doesn't go in that loop of message X.
Reward points.
Regards,
Mansi.
Edited by: help_abap on Jun 9, 2008 10:54 AM
‎2008 Jun 09 10:27 AM
Hi,
if sy-subrc ne 0.
*message x000(0k).
endif.
Here message type X means : Conscious triggering of termination with short dump.
so will suggest u to change the message type to I or E.
if sy-subrc ne 0.
message I000(0k).
endif.
This will work.
Rgds
sunny