cancel
Showing results for 
Search instead for 
Did you mean: 

Maximum Bins Exceeded when Creating PI Document In LI01N

Former Member
0 Kudos

LI01N is allowing for users to create inventory documents which exceed the number of bins allowed. The users are then getting the error that the bin limit has been exceeded when they try to "Activate".

Is this normal SAP behavior or should we get the error in LI01N?

We installed some support packs a while back and am wondering if something needs to be patched.

Thanks for your time.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

The message L4063 is issued correctly for Inventory document in

warehouse BRM.It occurs in the following code where T340D-MINPS is set

in customizing to 50. Once this value is exceeded the system issues

message L4063 and the document cannot be deleted. If one changes this

value to say 100 then the inventory document can be deleted

successfully. So far what you are seeing is standard behaviour.

SAPML04I

ML04IF00_INV_ERZEUGEN_VORBEREI

Form INV_ERZEUGEN_VORBEREITEN

IF QUA-LQNUM = INIT_LQNUM.

CNT_QUA = CNT_QUA + 1.

IF CNT_QUA_LINP > T340D-MINPS. >>>>>Condition not met

T342-AKTYP = CON_ANZEIGEN.

IF SY-BINPT = CON_X.

MESSAGE E063 WITH INP-LGPLA.

ELSE.

MESSAGE S063 WITH INP-LGPLA. >>>> Message called

ENDIF.

regards,

Ramana