SAP CRM
全部博文(33)
分类: 项目管理
2011-09-27 16:15:29
Copy control for Incoterms
| posted Apr 24, 2006 | Replies (1)
Standard SAP derives the incoterms from the sold-to -
to derive them from the ship-to (which does make more
sense!) you need to implement a user exit in sales
order processing.
In program MV45AFZZ, we did the following on several
of my projects, in FORM USEREXIT_MOVE_FIELD_TO_VBKD:
If SVBKD-TABIX = 0.
VBKD-INCO1 = KUWEV-INCO1. "IncoTerms Part 1
VBKD-INCO2 = KUWEV-INCO2. "IncoTerms Part 2
EndIf.
Note that this is only done in order create mode, so
that you can make changes subsequently & not have them
overwritten.