‎2010 Oct 13 6:00 AM
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.
‎2010 Oct 13 6:05 AM
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
‎2010 Oct 13 6:07 AM
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.
‎2010 Oct 13 6:13 AM
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
‎2010 Oct 13 6:20 AM
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
‎2010 Oct 13 6:25 AM
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.......... " "
‎2010 Oct 13 6:30 AM
‎2010 Oct 13 6:42 AM
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