cancel
Showing results for 
Search instead for 
Did you mean: 

Disable Text Determination Procedure in Sales Orders dynamically

Former Member
0 Kudos

Dear Gurus

I have this requirement where I want to disable a texts in procedure, depending on what is the sale org when sales order is created in VA01. In config, the text in procedure is set to mandatory for an order type but I want to disable it when sales org is a certain value.

Any brilliant ideas?

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi

Try this.

Go to the program MV45AFZZ.

In the form userexit_field_modification write the following code.

if vbak-vkorg = ??

tvak-txtgr = ' '.

endif.

This will work

If this does not work then define a dummy procedure without any texts and assign it here to tvak-txtgr.

Reward if this helps

Thanks