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 Dump while running MIGO

Former Member
0 Likes
2,161

HI

Below DUMP I got after the tcode MIGO (goods receipt) is run. Can you Please help as soon as possible.

Probably the only way to eliminate the error is to correct the program.

-

If the error occures in a non-modified SAP program, you may be able to

find an interim solution in an SAP Note.

If you have access to SAP Notes, carry out a search with the following

keywords:

"MESSAGE_TYPE_X" " "

"SAPLKAID" or "LKAIDF0B"

"MESSAGE_SEND"

And the code where it is getting dump is

Include ABAP Programe : LKAIDF0B

MESSAGE ID MS_ARBGB TYPE MS_MSGTY NUMBER MS_TXTNR

WITH MS_MSGV1 MS_MSGV2 MS_MSGV3 MS_MSGV4.

can any one help as soon as possible.

7 REPLIES 7
Read only

former_member404244
Active Contributor
0 Likes
1,453

Hi,

You might be entering incorrect data in MIGO thats why you are getting dump. Please see where in the code you are getting the message..for this use transaction SM14 or SM13.

Regards,

Nagaraj

Read only

0 Likes
1,453

I am getting dump in below code

MESSAGE ID MS_ARBGB TYPE MS_MSGTY NUMBER MS_TXTNR

WITH MS_MSGV1 MS_MSGV2 MS_MSGV3 MS_MSGV4.

Read only

0 Likes
1,453

Hi,

Please check the program in which you are getting dump, so that you can debug and see why you are getting the error.Please use SM13 or SM14 and locate the dump .

Regards,

Nagaraj

Read only

0 Likes
1,453

Hi,

please post the code lines before the line which caused the dump.

The MESSAGE line could give any possible message of any kind.

Also you can tell us the values of

MS_ARBGB

MS_TXTNR

MS_MSGV1

MS_MSGV2

MS_MSGV3

MS_MSGV4

in your dump.

Regards,

Klaus

Read only

0 Likes
1,453

The code :

PERFORM TRACE_MESSAGE_STORE(SAPLKAIPTRACE)

USING GD_SORT_MSG MS_ARBGB MS_MSGTY MS_TXTNR

MS_MSGV1 MS_MSGV2 MS_MSGV3 MS_MSGV4.

IF MS_MSGTY = 'X'.

MESSAGE ID MS_ARBGB TYPE MS_MSGTY NUMBER MS_TXTNR

WITH MS_MSGV1 MS_MSGV2 MS_MSGV3 MS_MSGV4.

ENDIF.

LD_TXTNR = MS_TXTNR.

CALL FUNCTION 'MESSAGE_STORE'

EXPORTING

MSGTY = MS_MSGTY

MSGV1 = MS_MSGV1

MSGV2 = MS_MSGV2

MSGV3 = MS_MSGV3

MSGV4 = MS_MSGV4

ARBGB = MS_ARBGB

TXTNR = LD_TXTNR

ZEILE = GD_SORT_MSG

EXCEPTION_IF_NOT_ACTIVE = SPACE.

ENDFORM. " MESSAGE_SEND

here is the Error Analysis Code :

Short text of error message:

Error GENERAL_ERROR MESSAGES_ACTIVE_REQUIRED

Long text of error message:

Diagnosis

The following program error or handling error has occurred.

Error information:

GENERAL_ERROR

MESSAGES_ACTIVE_REQUIRED

System Response

Processing is terminated.

Procedure

If you cannot solve the problem yourself using the error

information, note down this information and the entries which led

to the error. Contact your system administrator for further

assistance.

Technical information about the message:

Message class....... "K5"

Number.............. 011

Variable 1.......... "GENERAL_ERROR"

Variable 2.......... "MESSAGES_ACTIVE_REQUIRED"

Variable 3.......... " "

Variable 4.......... " "

Read only

0 Likes
1,453

Hi,

Please have a look at the below link..

Regards,

Nagaraj

Read only

0 Likes
1,453

Hi,

this dump is in FORM MESSAGE_SEND, which is called by FORM MESSAGES_ACTIVE_REQUIRED.

This form calls FM MESSAGES_ACTIVE and gets back a SY_SUBRC = 1, which means, that there is no active message collector.

MESSAGE_ACTIVE_REQUIRED is called from several places for several events.

Maybe in your dump you can find the event which causes the problem.

Regards,

Klaus