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

making field mandatory

Former Member
0 Likes
575

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...

2 REPLIES 2
Read only

Former Member
0 Likes
507

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

Read only

Former Member
0 Likes
507

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.