cancel
Showing results for 
Search instead for 
Did you mean: 

changing shipping point in VA32 ( Cust SA ) : storage loc greyed

former_member217921
Participant
0 Kudos

Hello,

I have got a Customer Scherdule Agreement in VA32.

I want to update the field "Shipping point" but the storage location is not updated and the field is greyed.

Is there a solution to have the good storage location correspondig to the shipping point ?

Thanks in advance.

Best regards,

Romeo.

Accepted Solutions (1)

Accepted Solutions (1)

0 Kudos

Hi

There are rules for all screen on whether they are open for input or not in the sales transaction processing. I had a quick look at VA32, whether or not a field is open or not firstly depends on

the transaction type create, change or display.

In change (VA32) the shipping point field is open or not according to this check

Main Program     SAPMV45A

Source code of   MV45AFFE_FELDAUSWAHL_STATUS

....

form FELDAUSWAHL_STATUS

...

case da_regel. = VSTEL

...

when 'VSTEL'.

   if xvbup-rfsta ca 'C' or

      xvbup-absta ca 'C' or

      xvbup-lfsta ca 'C' or

      vbap-prosa  eq charc.

     screen-input = 0.        >>>>

So it will be correct in your case that the field is greyed out.

You could set the screen-input to '1' in debug and the screen would be open if you

had to make a one off change. You would need a one of solution to this as it is

not configurable it is the code that determines when a field is open or not

Hope this helps you further

Kind regards

Brian

Answers (1)

Answers (1)

former_member217921
Participant
0 Kudos

Hello,

thanks a lot.

I think I could not change in debug cause I will let a trace with my name and I do not have the right to do so.

Thanks for the explanation.

Best regards,

Romeo.