cancel
Showing results for 
Search instead for 
Did you mean: 

Migo Transaction Giving dump when Trying to Check or Post More than 9 materials

Former Member
0 Kudos

Hi,

MIGO transaction Giving dumpwhen we are trying to check or post more than 9 materials. Its working fine till for 9 materials check or post. but when we are trying more that its giving dump  Exception condition "CUST_EXIT_AUSP3" triggered

Below are the dump details.

Error analysis

    A RAISE statement in program "SAPLCLFM" has raised exception condition

     "CUST_EXIT_AUSP3".

    Since the exception was not caught by a program higher up in the call

    hierarchy, processing was terminated.

    Short text for exception condition:

    You can find detailed documentation about the exception condition in

    transaction SE37 (Function Library). You can find the name of the

    function module called from the display of active calls.

How to correct the error :

    If the error occurs in a non-modfied SAP program, you might be able to

    find a solution in the SAP Notes system. If you have access to the SAP

    Notes system, check there first using the following keywords:

    "RAISE_EXCEPTION"

    "SAPLCLFM" bzw. LCLFMF65

    "MERGE_ALLKSSK_ALLAUSP"

    or

    "SAPLCLFM" CUST_EXIT_AUSP3

    or

    "SAPLMIGO                                " "CUST_EXIT_AUSP3"

    If you cannot solve the problem yourself, please send the following

    information to SAP:

    1. This description of the problem (short dump)

    To do this, choose  System -> List -> Save -> Local File (unconverted)

    on the screen you are in now.

    2. A suitable system log

    To do this, call the system log in transaction SM21. Restrict the time

    interval to ten minutes before the short dump and five minutes after

    it. In the display, choose System -> List -> Save -> Local File

    (unconverted).

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member183424
Active Contributor
0 Kudos

Isn't the portion "How to correct the error :" has given the possible solution ?

As this is standard program, If you can't solve by using SAP note then please raise an OSS note to SAP.

Former Member
0 Kudos

This is Standard program Dump .Then we Have to raise OSS note only or any SAP NOTE available for this problem ?

IF any one faced this problem please suggest me . If possible please provide me SAP NOTE details .

Thanks In advance .

former_member183424
Active Contributor
0 Kudos

First type to find OSS note. If you not find any related OSS note regarding this dump. Then raise ann OSS ticket to SAP.

joao_sousa2
Active Contributor
0 Kudos

Actually I don't think it's a standard problem because the exception is CUST_EXIT_AUSP3 (customer exit).

Former Member
0 Kudos

Can you please guide me how to find the the SAP NOTE. In post you replied OSS note instead of SAP NOTE i believe.Can you please guide me .I went to SNOTE tcode and searched  with given key words but i could not found any thing . please guide me if iam wrong.

former_member183424
Active Contributor
0 Kudos

I thought the same. But I can't find the exit in my system.

So may be it is a custom exit.

joao_sousa2
Active Contributor
0 Kudos

That's not the name of exit, it's the name of the exception. If you check the subroutine where the exception is thrown, the descrition is:

*----------------------------------------------------------------------*

*       FORM MERGE_ALLKSSK_ALLAUSP

*----------------------------------------------------------------------*

*       Merge allocation and valuation tables from user exit (L_*)

*       with corresponding tables in standard program (G_*).

*----------------------------------------------------------------------*

If this was my system I would put a break-point inside the perform, and debug.

*   take over user changes into allkssk, allausp

    perform merge_allkssk_allausp

           tables allkssk

                  lt_allkssk

                  allausp

                  lt_allausp.

It tried looking at the code for the name of the exit, but it's a dynamic function call, so you can only see the name in runtime.

EDIT: The actual code where the exception is thrown is:

    if l_allausp-atcod na '123456789'.

      raise cust_exit_ausp3.

    endif.

Former Member
0 Kudos

Its not a customer exit .I tried to open it via SE37 transaction then i got below message.

Function module CUST_EXIT_AUSP3 does not exist

Message no. FL110

.

But MIGO transaction behaving strange , In my scenario.

Former Member
0 Kudos

I also found the code lines where iam getting dump . Now what can i do please suggest me . I need to search the available exits which was implemented or need to check for implemented BADIs ?

Please suggest me.

joao_sousa2
Active Contributor
0 Kudos

First you need to create an OSS "incident", because maybe it's a bug. Probably it's related to your exit, but you can try anyway (maybe it's not).

As for handling it yourself you need someone who knows how to debug, read a call stack, use watchpoints, etc.

Former Member
0 Kudos

Hi I am also a ABAP Developer .I already debugged it . but could not found any thing.

joao_sousa2
Active Contributor
0 Kudos

Also check note 1703651.

The SMOD enhancement is probably CLFM0002.

Former Member
0 Kudos

Hi experts,

Iam new to this SAP NOTE topic. I tried to check for this note 1703651in SNOTE transaction . but i did not see any thing with number 1703651.

Please suggest.

joao_sousa2
Active Contributor
0 Kudos

Did you try to download the note?

Former Member
0 Kudos

No .Where to download ? Could you please guide me ?

joao_sousa2
Active Contributor
0 Kudos

Press CTRL + F8 inside SNOTE transaction.

Former Member
0 Kudos

If I downloaded SNOTE 1703651 no problem with system right ? Its difficult if any thing happend .

joao_sousa2
Active Contributor
0 Kudos

Downloading only makes it available for implementation. After that you must click the note, and implement it especifically.

Anyway you should be doing the download in your DEV system.

joao_sousa2
Active Contributor
0 Kudos

As for transport procedures for production, you must check your organization. I don't know what are the steps usually required, and how much testing must be made before transporting a correction to production.

Former Member
0 Kudos

Oh ok. Thank you . Thanks for your suggestions.

Former Member
0 Kudos

Hi Experts,

Can any body help me , this is urgent please.