Application Development and Automation 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: 
Read only

user exit for the quantity field

Former Member
0 Likes
494

hi all,

I want to gray out the quantity field for all material under the sales order which has the status completedin va03.

What i mean by this is suppose for a perticular SO i go and check the status of it in va03 and it has completed in it. then i wnat to gray out the quantity field.

please help me out in this regard.

hi all,

I want to gray out the quantity field for all material under the sales order which has the status completedin va03.

What i mean by this is suppose for a perticular SO i go and check the status of it in va03 and it has completed in it. then i wnat to gray out the quantity field.

please help me out in this regard.

2 REPLIES 2
Read only

Former Member
0 Likes
466

Hi,

Check out for the screen exits and badis avavilable for that transaction.

Rgds

ABhilash.

Read only

aabhas_wilmar
Contributor
0 Likes
466

User the user exit MV45OFZZ.

Use Modify Screen statement...

example:

Loop at screen.
if screen-name = 'XXXX-XXXXX'.
screen-input = 0.
modify screen.
endif.
endloop.

You can add an additional check using the screen group in the IF condition.

Kind Regards,

Aabhas!