2006 Oct 12 4:45 AM
Hi,
I have a requirement:
In the sales order if the item category is "ZLPK". Then
that item must be blocked for changes in the VA02, That is for that particular item all input fields in the VA02 must be input disabled.
Is there any standard way to do it or we must do it via user exit. Please help me how we can do it.
Thanks,
Santhosh
2006 Oct 12 5:14 AM
Hi Santosh ,
You can do this through a userexit
also using a Transaction Variant .
I feel Transaction Varianta best way to do .
Please award if answer is useful to you.
2006 Oct 12 5:19 AM
Hi,
MV45AFZZ is the user exit
Have a look at below link.
http://help.sap.com/saphelp_46c/helpdata/en/1c/f62c7dd435d1118b3f0060b03ca329/content.htm
Best Regards,
Vibha Deshmukh
*Please mark all the helpful answers
2006 Oct 12 5:25 AM
Hi,
Try this..
In the userexit USEREXIT_FIELD_MODIFICATION..Try to disable the fields..
IF SCREEN-GROUP2 = 'LOO'.
SCREEN-INPUT = '0'.
ENDIF.
Thanks,
Naren