cancel
Showing results for 
Search instead for 
Did you mean: 

Change Error message in warning message.

0 Kudos

Hi all,

     Message no. L3039 i.e. Maximum load capacity of storage bin is exceeded.  in SAP WM

I want to change above error message into warning message.

Thanks in advance

Regards

Vinayak

Accepted Solutions (0)

Answers (3)

Answers (3)

raymond_giuseppi
Active Contributor
0 Kudos

The error is hard coded in Include LL03AF0T, so look at the code before the error raising. You could try to use implicit enhancement in form KAPAZITAETSDATEN_FEHLEN (Include LL03AF0R) changing p_subrc to get a warning message. (*)

Regards,

Raymond

(*) I hope there is a safety margin in storage bin sizing.

david_ruiz
Active Participant
0 Kudos

Vinayak,

Yes, this error is hardcoded in LL03AF0T as error and cannot be customised as warning.

regards, david

0 Kudos

HI David,

Thanks for reply, but I don't understand what is  LL03AF0T (Table, Message or class ....). Can u please explain in details so I will try to resolve through ABAP.

Regards

Vinayak

david_ruiz
Active Participant
0 Kudos

SE38 -> program    LL03AF0T

lines:

   77         PERFORM PROT_MESSAGE USING '039'

                           LTAP-NLPLA HLP_MENGE IT340D-GEWEI BL.

   79         MESSAGE E039 WITH LTAP-NLPLA HLP_MENGE IT340D-GEWEI.

  156         PERFORM PROT_MESSAGE USING '039'

                           LTAP-RLPLA HLP_MENGE IT340D-GEWEI BL.

  158         MESSAGE E039 WITH LTAP-RLPLA HLP_MENGE IT340D-GEWEI.

former_member182609
Active Contributor
0 Kudos

If you go SE91 transaction then  you can get the details.Check with ABAP person.Enter message class L3 then enter message number 039 press display you will get the message.

former_member182609
Active Contributor
0 Kudos

I am not sure you can achive this.This is a system message and it is not possible to change.