Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

VA02 modification( user exit )

santhosh_patil
Contributor
0 Kudos
128

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

3 REPLIES 3

Former Member
0 Kudos
63

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.

Former Member
0 Kudos
63

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

Former Member
0 Kudos
63

Hi,

Try this..

In the userexit USEREXIT_FIELD_MODIFICATION..Try to disable the fields..

IF SCREEN-GROUP2 = 'LOO'.

SCREEN-INPUT = '0'.

ENDIF.

Thanks,

Naren