cancel
Showing results for 
Search instead for 
Did you mean: 

copy control sales doc to sales doc

former_member696369
Active Participant
0 Kudos

Dear All,

Is it possible to create sales order with different sales area by copying the different sales area of sales order.

lf possible give me inputs.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

It is possible. In copy control routine (t-code VTAA) you have to make adjustments. Take a look at copying rule LV45C002:

  IF NOT HVBAK-VKORG IS INITIAL AND

     NOT HVBAK-VTWEG IS INITIAL AND

     NOT HVBAK-SPART IS INITIAL.

* Is the sales org. the same in both reference and target?

    IF HVBAK-VKORG NE VBAK-VKORG.

      MESSAGE E007 WITH HVBAK-VKORG VBAK-VKORG.

    ENDIF.

* Is the dist. channel the same in both reference and target?

    IF HVBAK-VTWEG NE VBAK-VTWEG.

      MESSAGE E011 WITH HVBAK-VTWEG VBAK-VTWEG.

    ENDIF.

* Is the division the same in both reference and target?

    IF HVBAK-SPART NE VBAK-SPART.

      MESSAGE E012 WITH HVBAK-SPART VBAK-SPART.

    ENDIF.

  ENDIF.

By deleting those, you can meet your requirement.

Answers (0)