cancel
Showing results for 
Search instead for 
Did you mean: 

Order Quantity field is changeable - Reg

Former Member
0 Kudos

Hi all,

We have created an order for the same delivery document & invoice were created.

After that user has changed the order quantity in sales order.

Please let me know how can we avoid user modification after an order is completed.

Thanks & Regards,

Sp.Balaji

Accepted Solutions (1)

Accepted Solutions (1)

Lakshmipathi
Active Contributor
0 Kudos

Hi Balaji

Thru User Exit <b>MV45AFZZ</b>, you can restrict the user not to change the order quantity.

With the help of an ABABer, you can activate your requirement.

Thanks

G. Lakshmipathi

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

Thanks all for your timely help.

Regards,

Sp.Balaji

Former Member
0 Kudos

Hi Balagi,

use the Exit Include program MV45AFZZ

and the FORM USEREXIT_MOVE_FIELD_TO_VBAP.

in that write the code and check

something like

if sy-tcode = 'VA02'.

if not VBAP-KWMENG is initial.

loop at screen.

if screen-name = vbap-kwmeng.

screen-input = 0.

modify screen.

endif.

endloop.

endif

endif.

Reward points pls.

Regards,

Govind.