cancel
Showing results for 
Search instead for 
Did you mean: 

There are still batch split items with quantity X for item

Former Member
0 Kudos

Our current system is ECC6. The deletion of item in the delivery (TO

confirmed) is different before ECC6 (4.6C). In 4.6, unless quantity of

batch split items are zeroed out in the delivery, the item cannot be

deleted. Message "There are still batch split items with quantity X for

item" is encountered. In ECC, line item can be deleted even batch split

items are not 0. The message doesn't exist in ECC6.

Please advise how to activate this message.

Accepted Solutions (1)

Accepted Solutions (1)

harry_wu
Contributor
0 Kudos

In ECC6, the logic has been completely changed during item deletion.

Now, there is no way to activate the message VL224 when deleting batch item.

In 46c,

FORM XLIPS_LOESCHEN_PRUEFEN is called with XL_ERROR = 'X'.

 
Main program     SAPFV50P
Source code of   FV50PFLP_XLIPS_LOESCHEN_RC
FORM XLIPS_LOESCHEN_RC
......
           IF IF_TABIX IS INITIAL.
             REFRESH LT_REASONS.
             PERFORM XLIPS_LOESCHEN_PRUEFEN TABLES   LT_REASONS      <<<<<<
                                            USING    LF_POSNR
                                                     CHARX        <<<<<<<
                                                     IF_ALL
                                            CHANGING LF_EXIT.
......

In ECC6,

The FORM is called with XL_ERROR = SPACE. That's why the error is not issued.

Actually, they are called from different place in ECC and 46c. The logic has been completely changed.


Main Program     SAPMV50A
Source code of   MV50AF0D         
FORM DELETE_ITEMS_CHECK                                       
......
           perform xlips_loeschen_pruefen(sapfv50p) tables   ct_reasons   <<<<<
                                                    using    ls_admin-posnr
                                                             space
                                                             space   <<<<
                                                             'GHK' "n_766525
                                                    changing lf_exit.
......

Answers (0)