cancel
Showing results for 
Search instead for 
Did you mean: 

userexit_save_document_prepare IN SAPMV50A

former_member220801
Participant
0 Kudos

I would like to some checking before saving the delivery document.

But in userexit_save_document_prepare, I can't access all the items in the document. It seems that I can only access to the work area of LIPS.

since when i add

LOOP AT LIPS.

ENDLOOP.

I can't get into the loop.

Am I using the right user exit to check all the items in delivery document?

How can I access all the items?

Your help is greatly appreciated. Thanks!

Accepted Solutions (0)

Answers (2)

Answers (2)

ferry_lianto
Active Contributor
0 Kudos

Hi Gundam,

Please use user exits userexit_save_document in program MV50AFZ1 and you can loop at internal table XLIPS.

LOOP AT XLIPS.

...

ENDLOOP.

Hope this will help.

Regards,

Ferry Lianto

Former Member
0 Kudos

I think all items are in XLIPS internal table.