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

MESSAGE_TYPE_X.

Former Member
0 Likes
639

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 ?

4 REPLIES 4
Read only

Former Member
0 Likes
511

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.

Read only

Former Member
0 Likes
511

it is the Summation button on the grid which is not working ..the button on grid giving the dump as MESSAGE_TYPE_X.

Read only

Former Member
0 Likes
511

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

Read only

Former Member
0 Likes
511

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