25.2.11

SAP Note 23400 - Termination in ABAP program SAPMM07S -> STABIX=0

Symptom:

During the formation of the stock population within the inventory sampling procedure in WM, a runtime error occurs with TABLE INVALID INDEX.

Cause and prerequisites

The stock population does not contain any storage bins for the specified stock management levels (warehouse number/storage type). The program attempts an UPDATE of an internal table anyway, but with INDEX = 0.

Solution
Correction in module MM07SFS1.

FORM S1_LAGERGESAMTHEIT.
.. (around line 11600)
..
*------ Letzter Update auf XSBSE muß in jedem Fall gemacht werden
IF STABIX > 0. "INSERT
READ TABLE XSBSE INDEX STABIX.
MOVE SUM_BKLAS TO XSBSE-BUBSE.
MODIFY XSBSE INDEX STABIX.
ENDIF. "INSERT
CLEAR XMBEWL.
REFRESH XMBEWL.
..
..

No comments:

Post a Comment