2009 Sep 10 5:37 AM
Hi i have one requirement that while changing sales order header data > order data > sold to party tab page
there we can able to find Reference field,now user requirement was to make that field mandatory for particular divison.
i have tried for Badi's but there is no suitable Badi.can any one help to know wether any exit help me to come out of this..
Thanks...
Hi i have one requirement that while changing sales order header data > order data > sold to party tab page
there we can able to find Reference field,now user requirement was to make that field mandatory for particular divison.
i have tried for Badi's but there is no suitable Badi.can any one help to know wether any exit help me to come out of this..
Thanks...
2009 Sep 10 5:51 AM
Hi,
Have you tried the Field_modification subroutine exit in include MV45AFZZ ?
search forum with MV45AFZZ you will get lots of threads.
Regards
Karthik D
2009 Sep 10 5:56 AM
Hello,
There is a user exit available . In Form USEREXIT_FIELD_MODIFICATION of MV45AFZZ include. Here you can write
Loop at screen.
if screen-name = ''.
screen-required = 1.
modify screen.
endif.
endloop.