cancel
Showing results for 
Search instead for 
Did you mean: 

Sales order create

Former Member
0 Kudos

Hello Everyone -

The issue is at the time of creation of sales order. If the sales order is enetered with VA01 and both the ship to party and sold to party are keyed in the respective fields. The system just checks for the availability of the customer in that sales area. But it overrides the assignment of the ship to party in the customer master.

I remember this was a long pending issue in 4.6C.

But there is a SAP note which triggers a warning or error message when the user "keyed in" different ship to party customer that is not available in the "Sold to party" customer master assignment. Unfortunately, i could not locate it now.

Thanks,

SK

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

I'm not aware of SAP standard functionality for this.

There is possibility of implementing userexit_move_field_to_vbak in Include MV45AFZZ.

Code example:

     SELECT SINGLE * FROM knvp
                    WHERE kunnr = kuagv-kunnr
                     AND  kunn2 = kuwev-kunnr.
     IF sy-subrc NE 0.
       MESSAGE --> '
Ship to party &2 is not a partner of sold to party &1'
     ENDIF.

Former Member
0 Kudos

There is a oss note available to implement to give as a warning. I am looking for the note rather than implementing our own code in the userexit. If anyone is aware of the note, please let me know.

Cheers,

SK