cancel
Showing results for 
Search instead for 
Did you mean: 

my customer master incoterms are different and in sales order different

Former Member
0 Kudos

Hi experts,

  my requirement is i maintained INCOTERMS IN CMR as CFR, but while creating order automatically it should be FCA.

please explain how can i achieve this.

Advance thanks

Accepted Solutions (0)

Answers (3)

Answers (3)

jignesh_mehta3
Active Contributor
0 Kudos

Hello,

Firstly, what is the business need to have different Incoterms in Customer Master & Sales Document?

Secondly is this scenario limited to only a particular Sales order Type of for all the Sales Order Types?

If it is for all the Sales Order Types for the Customer, then change the Incoterms in Customer Master Record. But if Incoterms FCA is required for a particular Sales Order Type, then there is not Standard Solution to this & you will have to insert a ABAP code in User exit as suggested above.

Thanks,

Jignesh Mehta

Former Member
0 Kudos

HI Akshitha ,

Try with user exit MV45AFZZ.

Former Member
0 Kudos

Dear Akashiita

You can achieve this through FORM USEREXIT_MOVE_FIELD_TO_VBKD (MV45AFZZ).

Here I am giving you one example where I have done USERID wise.

FORM USEREXIT_MOVE_FIELD_TO_VBKD.

*  VBKD-zzfield = xxxx-zzfield2.

*{   INSERT         DEVK905153                                        1

*

IF SYST-UNAME = 'USER1' AND SYST-UNAME = 'USER2' AND SYST-UNAME = 'AKSHIITHA'.

    VBKD-INCO1 = 'FCA'.

    VBKD-INCO2 = 'Plant'.

    ENDIF.

*}   INSERT

ENDFORM.

In the beginning of this code tell your ABAPER to clear INCO1 and INCO2 from VBKD

Try this.

Thanking you!

Ashish Mishra