‎2007 Sep 27 8:03 AM
Hi All,
My client requirement is during sales order processing sold to party value is copied into PO number.
Ex: Sold to party : 1000
PO Number: 1000.
Which user exit can we used to achieve the above requirement.
Thanks in advance
Regards,
Govind.
‎2007 Sep 27 8:13 AM
Hi
In the Include program MV45AFZZ you will find
FORM USEREXIT_MOVE_FIELD_TO_VBAK. Here, write
VBAK-BSTNK = VBAK-KUNNR.
Regards
Tanmay
‎2007 Sep 27 8:07 AM
Hi
Use the Include program MV45AFZZ of Sales order Main Program SAPMV45A
and use the FORM
FORM USEREXIT_MOVE_FIELD_TO_VBAK
to move the
Sold to party VBAK-KUNNR to the Purchase order field VBAK-BSTNK.
Regards
Anji
‎2007 Sep 27 8:10 AM
Hi Anji,
Thanks for your quick reply.
Can u plz give brief explanation to fulfill my requirement.
It's urgent.
govind
‎2007 Sep 27 8:13 AM
Hi
In the Include program MV45AFZZ you will find
FORM USEREXIT_MOVE_FIELD_TO_VBAK. Here, write
VBAK-BSTNK = VBAK-KUNNR.
Regards
Tanmay
‎2007 Sep 27 8:14 AM
use
FORM USEREXIT_FIELD_MODIFICATION. of include mv45afzz of sapmv45a
FORM USEREXIT_FIELD_MODIFICATION.
case screen-name.
when VBKD-BSTKD'.
move kugav-kunnr to vbkd-bstdk.
endcase.
endform.
plz reward if dis helps